Git
Just a repo that stores frequently used commands from Git
⛑ Status
Check status
This command will show the current status of the local repo.
View logs
This command will show all commit logs.
🪵 Branch
Fetch latest info from remote
This command will show latest info from remote Github repo (won't touch the files in local repo).
Pull latest changes from remote
This command will pull latest changes from remote Github repo (will touch the files in local repo, sometimes will occur conflict if latest changes and local file have make change in same line).
Merge branch
This command will merge other branch into current branch.
Fast-forward (Does not generate merge commit)
No Fast-forward (Generate merge commit)
Fetch latest branch from remote
This command will show all latest branches from remote Github repo.
Create & switch to new branch
This command will create and switch to new branch
Method 1
Method 2
Create new branch & copy content from a remote branch
This command will create a new branch and also copy all contents from a remote branch.
View all local branches
This command will show all local branches of project repo.
View all local & remote branches
This command will show all local and remote branches of project repo.
Switch branch
This command will switch to another branch.
Delete branch locally
This command will delete a branch locally
Delete branch remotely
This command will delete a branch remotely
Go back to a specific commit
This command will create a commit and go back to specific commit. Yes, this method will leave the records instead of delete it completely from repo. However, this method is a lot safer than git reset
, especially you're working with other people.
Squash X commits into 1
This command will let you go back X commits by resetting git index to before the commits you want to squash. Use --soft
so that git only resets the index and doesn't touch your working directory. Then create a commit as usual. source from stackoverflow
🖥 Remote
Get remote detail
This command will show existing remotes of the project.
Update origin's remote url
This command will update project's origin remotes with new remote url.
Last updated
Was this helpful?