Git Basic Command
Switch from branch to master
Push branch to remote server (github, etc)
Create new branch
Create new tag
Push new tag to server
Inside the branch, pull from master
Merge a git branch to master
Delete local branch
Delete remote branch
Revert last commit
updated on 17 January 2019
git checkout master
Push branch to remote server (github, etc)
git push origin [branch_name]
Create new branch
git checkout -b [branch_name]
Create new tag
git tag "[tag name]"
Push new tag to server
git push origin --tags
Inside the branch, pull from master
git pull origin master
Merge a git branch to master
git checkout master
git pull origin master
git merge [branch name]
git push origin master
Delete local branch
git branch -d [branch name]
Delete remote branch
git push origin --delete [branch name]
Revert last commit
git revert HEAD
updated on 17 January 2019
Comments
Post a Comment