Last active
October 5, 2018 05:31
-
-
Save nsahoo/8849162 to your computer and use it in GitHub Desktop.
git commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################################################### | |
# how to commit changes done in the existing files | |
##################################################### | |
git commit -a -m "xxxxxxxx" | |
git status | |
git push | |
=====>> Very Important <<===== | |
############################################################ | |
# how to create a branch and delete it locally and remotely | |
############################################################ | |
git checkout -b <branch_name> | |
git branch ---> it'll show the newly formed branch along with master(default branch) | |
git checkout master ----> switch to master branch | |
git branch -d <branch_name> ----> delete the branch locally | |
git branch -D <branch_name> ----> delete the branch remotely | |
[OR] | |
git push origin --delete <branch_name> | |
################################################################# | |
How to remove an upstream remote repository in github | |
################################################################# | |
git remote rm upstream | |
[OR] | |
git remote set-url upstream <url> | |
[OR] | |
edit .git/config and remove upstream | |
[remote "upstream"] | |
url = https://github.com/cms-bph/BuToKstarMuMu.git | |
fetch = +refs/heads/*:refs/remotes/upstream/* | |
Then you can add a new upstream | |
git remote add upstream <url> | |
########################################################################### | |
How to keep your forked repo synced with the upstream source | |
########################################################################### | |
a very good tutorial is at below | |
---> http://2buntu.com/articles/1459/keeping-your-forked-repo-synced-with-the-upstream-source/ | |
git remote add upstream https://github.com/cms-bph/BToKstarMuMu.git (OLD) | |
git remote add upstream [email protected]:cms-bph/BToKstarMuMu.git (NEW) --> also do the similar while cloning | |
git fetch upstream | |
git rebase upstream/master | |
git push origin master | |
################################################# | |
# how to add a new file and commit the update | |
################################################# | |
git add <file_name> | |
git commit -m "xxxxxx" | |
git status | |
git pull --rebase # another option: git pull | |
git push | |
############################ | |
# create a new tag v2.1 | |
############################ | |
git add <file-name> | |
git commit -m "xxx" | |
git status | |
git push | |
git tag -a v2.1 -a -m "xxx" | |
git tag | |
git push origin v2.1 | |
######################### | |
# rename a tag | |
######################### | |
git tag NEW OLD | |
git tag -d OLD | |
git push origin NEW | |
########################## | |
# remove a directory | |
########################## | |
git rm -r <dir-name> | |
git commit -m "xxxx" | |
git push origin master | |
############################################ | |
# create a new repository on command line # | |
############################################ | |
touch README.md | |
git init | |
git add README.md | |
git commit -m "first commit" | |
git remote add origin https://github.com/nsahoo/evtgen-decs.git | |
git push -u origin master | |
#################################################### | |
# push an existing repository from command line # | |
#################################################### | |
git remote add origin https://github.com/nsahoo/evtgen-decs.git | |
git push -u origin master | |
########################################### | |
# How to update local repository in git | |
########################################### | |
rename the files first and then do git pull | |
#################################################### | |
# how to clone a particular branch from github repo | |
#################################################### | |
git clone -b my-branch https://[email protected]/username/myproject.git | |
git clone -b ver_woV0 https://github.com/nsahoo/LambdaB.git | |
###################################################### | |
# how to push a commit to a particular branch | |
###################################################### | |
git push origin <branch_name> | |
#################################### | |
# how to checkout a new branch | |
#################################### | |
git checkout -b <branch_name> (produces a branch which is same as master and at the same time switch to the new one) | |
git checkout <branch_name> (if you have couple of branches and you want to switch in between diff. branches) | |
################# | |
# git log | |
################# | |
git log --oneline | |
git log --stat | |
git log -p | |
git shortlog |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment