mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 08:45:09 +01:00
4.7 KiB
4.7 KiB
Git
Common commands
- Start a new git repository:
git init
ORgi
- Add files to commit:
git add <files>
ORga <files>
- Commit those files to the repository:
git commit -m <message>
ORgc <message>
- Undo the last commit:
gr
- Undo the last commit and delete changes:
grr
- Update your local repository with a remote repository:
git pull -u <remote> <branch>
- The most common use is
git pull -u origin master
, although this also works for upstream remotes
- The most common use is
- Show the status of the local repository:
git status
ORgs
ORgit s
- Push changes from your local repository to a remote repository:
git push <remote> <branch>
ORgit push
ORgp
- The most common use is
git push origin master
, which is usually the default forgit push
- The most common use is
- Show the difference between the staging area and the working tree:
git diff
ORgd
- Show the changes that you added but haven't committed yet:
git diff --staged
ORgd --staged
ORgds
- Show the changes that you added but haven't committed yet:
- Show a log of all the commits:
git log
(full log) ORgit lg
(commits only, easier to read) - Edit the last commit message:
git commit --amend
- Commit a file one part at a time:
git add --patch <file_name>
ORga --patch <file_name>
ORgap <file_name>
- Useful when you made a lot of changes to a file and need to commit it
- Enables you to commit certain parts of a file and not the entire thing
- Note that if the file is not in the repository yet, you should do
git add -N <file_name>
orga -N <file_name>
- Go to the next section:
j
- Go to the previous section:
k
- Stage this section for the next commit:
y
- Do not stage this section for the next commit:
n
- Quit and do not stage this section or any of the remaining sections:
q
- Split the current section into smaller sections:
s
- Manually edit the current section:
e
Note that the -u
flag means set-(u)pstream-to
. It records the location so you don't have to set which remote to push or pull from every time.
Also note that git clone
makes a remote name of origin
by default. This is why git push -u origin master
is usually used.
Working with Branches
- Show all the branches:
git branch -a
- Checkout a different branch:
git checkout <branch>
- Useful for 1) checking out the master or development branch, 2) checking out an upstream branch, and 3) checking out a feature branch
- Create a new branch:
git checkout -b <branch>
- Delete a branch when you're done with it:
git branch -d <branch>
Less common commands
- Removes files to commit:
git rm <files>
- Delete all local changes in the repository:
git clean -f
- Show all the diffs and changes from the last N commits:
git log -p -<N>
- Show the differences between your repository and a remote one:
git log -p master..<REMOTE>/master
- View all remotes for the current repository:
git remote -v
(e.g. GitHub mirror, friend's fork, upstream, etc.) - Show the entire contents of a commit, including diffs:
git show <commit>
- Search for a string in the files of a git repository:
git grep <pattern>
ORgg <pattern>
- Search for any tab characters in a repository:
git grep $'\t'
ORggt
- Search for any carriage returns in a repository:
git grep $'\r'
ORggr
- Search for any tab characters in a repository:
- Merge all unpushed commits into a single commit:
git rebase -i origin/master
- Note that you are not done after this. You must also change
pick
tosquash
(ors
) for all of the commits you want to merge. This is usually everything except your most recent commit. - Another window will open to let you combine all the commit messages into one big commit message
- Note that you are not done after this. You must also change
Working with Tags
- Show all the tags in a repository:
git tag
- Create a new tag:
git tag -a <tag_name> -m <description>
- If
-m
is not given, git will open your editor to allow you to type a more detailed message - The tag name is usually a version number such as
v2.4.3
- If
- View the saved data of a tag:
git show <tag_name>
- Tag a specific commit instead of the current state in the repository:
git tag -a <tag_name> <commit>
- Push a tag to the remote repository:
git push origin <tagname>
- Note that sharing a tag is the same as sharing remote branches
- Push all tags to upstream:
git push --tags
- Easily change between versions of a repository (through tags):
git checkout <tag_name>
- Update a previous version with new changes:
git checkout -b <branch_name> <tag_name>
- Note that you should make a new tag for the updated commit since
<tag_name>
already refers to a commit and is not changed - For example, if you checkout tag
2.0
then the new tag can be, for example,2.0.1
or2.0a
- Note that you should make a new tag for the updated commit since