https://github.com/ahasverus/git-branch-system
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (4.2%) to scientific vocabulary
Last synced: 9 months ago
·
JSON representation
Repository
Basic Info
- Host: GitHub
- Owner: ahasverus
- Default Branch: main
- Size: 7.81 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created about 2 years ago
· Last pushed about 2 years ago
Metadata Files
Readme
README.md
git-branch-system
This repository is dedicated to show how to deal with the git branch system.
Main commands:
```sh
Print git history ----
git log --graph --decorate --oneline
List git local branches ----
git branch
Create a new local branch and switch to it ----
git checkout -b improve-documentation
List git local branches ----
git branch
Switch to main branch ----
git checkout main
Switch to new branch ----
git checkout improve-documentation
Stage and commit ----
...
Push new branch to GitHub ----
git push --set-upstream origin improve-documentation
List all git branches (remote included) ----
git branch -a
Merge new branch into main ----
git checkout main git merge improve-documentation
Delete a local branch ----
git branch -d improve-documentation
List git local branches ----
git branch
List all git branches (remote included) ----
git branch -a
Delete remote branch ----
git push origin -d improve-documentation
List all git branches (remote included) ----
git branch -a
Download all remote branches ----
git fetch
Create a new local branch from a remote branch ----
git checkout -b add-license origin/add-license ```
Owner
- Name: Nicolas Casajus
- Login: ahasverus
- Kind: user
- Location: Montpellier, France
- Company: @FRBCesab
- Website: https://nicolascasajus.fr
- Repositories: 89
- Profile: https://github.com/ahasverus
Data scientist
GitHub Events
Total
Last Year
Committers
Last synced: about 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| Nicolas Casajus | a****s | 4 |
Issues and Pull Requests
Last synced: over 1 year ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0