giteveryday - A useful minimum set of commands for Everyday Git
| Use Case | Command | Description |
|---|---|---|
| Create a new repository | git init | π Initialize a new Git repository |
| View commit history | git log | π Show commit logs |
| Switch/create branch | git switch -c <branch> | π Create and switch to a new branch |
| Track changes | git add | β Stage files for commit |
| Check working tree | git status | π Show working tree status |
| Commit changes | git commit | πΎ Record changes to the repository |
| Undo changes | git restore | β©οΈ Restore working tree files |
| Merge branches | git merge | π Join two or more development histories |
| Rebase topic branch | git rebase | π§Ή Reapply commits on top of another base |
| Tag a release | git tag | π·οΈ Create a tag for a known point |
| Clone a repository | git clone | π₯ Clone a repository into a new directory |
| Pull latest changes | git pull | π Fetch from and integrate with another repository |
| Push changes | git push | π€ Update remote refs along with associated objects |
| Send patches via email | git format-patch | π§ Prepare patches for email submission |
| Apply patches from email | git am | π¬ Apply a series of patches from a mailbox |
| Cherryβpick a commit | git cherry-pick | π Apply the changes introduced by some existing commits |
| Revert a commit | git revert | βͺ Revert some existing commits |
| Garbage collect | git gc | π§Ή Cleanup unnecessary files and optimize the local repository |
Everyday Git With 20 Commands Or So
Git users can broadly be grouped into four categories for the purposes of describing here a small set of useful command for everyday Git.
A standalone individual developer does not exchange patches with other people, and works alone in a single repository, using the following commands.
Use a tarball as a starting point for a new repository.
$ tar zxf frotz.tar.gz
$ cd frotz
$ git init
$ git add . (1)
$ git commit -m "import of frotz source tree."
$ git tag v2.43 (2)
Create a topic branch and develop.
$ git switch -c alsa-audio (1)
$ edit/compile/test
$ git restore curses/ux_audio_oss.c (2)
$ git add curses/ux_audio_alsa.c (3)
$ edit/compile/test
$ git diff HEAD (4)
$ git commit -a -s (5)
$ edit/compile/test
$ git diff HEAD^ (6)
$ git commit -a --amend (7)
$ git switch master (8)
$ git merge alsa-audio (9)
$ git log --since='3 days ago' (10)
$ git log v2.43.. curses/ (11)
git commit -a later.-10 (to show up to 10 commits), --until=2005-12-10, etc.curses/ directory, since v2.43 tag.A developer working as a participant in a group project needs to learn how to communicate with others, and uses these commands in addition to the ones needed by a standalone developer.
Clone the upstream and work on it. Feed changes to upstream.
$ git clone git://git.kernel.org/pub/scm/.../torvalds/linux-2.6 my2.6
$ cd my2.6
$ git switch -c mine master (1)
$ edit/compile/test; git commit -a -s (2)
$ git format-patch master (3)
$ git send-email --to="person <email AT example.com>" 00*.patch (4)
$ git switch master (5)
$ git pull (6)
$ git log -p ORIG_HEAD.. arch/i386 include/asm-i386 (7)
$ git ls-remote --heads http://git.kernel.org/.../jgarzik/libata-dev.git (8)
$ git pull git://git.kernel.org/pub/.../jgarzik/libata-dev.git ALL (9)
$ git reset --hard ORIG_HEAD (10)
$ git gc (11)
mine from master.master, ready to see what's newgit pull fetches from origin by default and merges into the current branch.ALL from a specific repository and merge it.Push into another repository.
satellite$ git clone mothership:frotz frotz (1)
satellite$ cd frotz
satellite$ git config --get-regexp '^(remote|branch)\.' (2)
remote.origin.url mothership:frotz
remote.origin.fetch refs/heads/*:refs/remotes/origin/*
branch.master.remote origin
branch.master.merge refs/heads/master
satellite$ git config remote.origin.push \
+refs/heads/*:refs/remotes/satellite/* (3)
satellite$ edit/compile/test/commit
satellite$ git push origin (4)
mothership$ cd frotz
mothership$ git switch master
mothership$ git merge satellite/master (5)
git pull to fetch and store the branches of mothership machine to local remotes/origin/* remote-tracking branches.git push to push all local branches to their corresponding branch of the mothership machine.remotes/satellite/* remote-tracking branches on the mothership machine. You could use this as a backβup method. Likewise, you can pretend that mothership "fetched" from you (useful when access is one sided).Branch off of a specific tag.
$ git switch -c private2.6.14 v2.6.14 (1)
$ edit/compile/test; git commit -a
$ git checkout master
$ git cherry-pick v2.6.14..private2.6.14 (2)
private2.6.14 branch to master branch without a formal "merging". Or longhandgit format-patch -k -m --stdout v2.6.14..private2.6.14 | git am -3 -kAn alternate participant submission mechanism is using the git request-pull or pullβrequest mechanisms (e.g as used on GitHub (www.github.com) to notify your upstream of your contribution.
A fairly central person acting as the integrator in a group project receives changes made by others, reviews and integrates them and publishes the result for others to use, using these commands in addition to the ones needed by participants.
This section can also be used by those who respond to git request-pull or pullβrequest on GitHub (www.github.com) to integrate the work of others into their history. A subβarea lieutenant for a repository will act both as a participant and as an integrator.
A typical integrator's Git day.
$ git status (1)
$ git branch --no-merged master (2)
$ mailx (3)
& s 2 3 4 5 ./+to-apply
& s 7 8 ./+hold-linus
& q
$ git switch -c topic/one master
$ git am -3 -i -s ./+to-apply (4)
$ compile/test
$ git switch -c hold/linus && git am -3 -i -s ./+hold-linus (5)
$ git switch topic/one && git rebase master (6)
$ git switch -C seen next (7)
$ git merge topic/one topic/two && git merge hold/linus (8)
$ git switch maint
$ git cherry-pick master~4 (9)
$ compile/test
$ git tag -s -m "GIT 0.99.9x" v0.99.9x (10)
$ git fetch ko && for branch in master maint next seen (11)
do
git show-branch ko/$branch $branch (12)
done
$ git push --follow-tags ko (13)
master yet. Likewise for any other integration branches e.g. maint, next and seen.seen every time from the next.git show-branch, master should have everything ko/master has, and next should have everything ko/next has, etc.In this example, the ko shorthand points at the Git maintainer's repository at kernel.org, and looks like this:
(in .git/config)
[remote "ko"]
url = kernel.org:/pub/scm/git/git.git
fetch = refs/heads/*:refs/remotes/ko/*
push = refs/heads/master
push = refs/heads/next
push = +refs/heads/seen
push = refs/heads/maint
A repository administrator uses the following tools to set up and maintain access to the repository by developers.
update hook howto[1] has a good example of managing a shared central repository.
In addition there are a number of other widely deployed hosting, browsing and reviewing solutions such as:
We assume the following in /etc/services
$ grep 9418 /etc/services
git 9418/tcp # Git Version Control System
Run gitβdaemon to serve /pub/scm from inetd.
$ grep git /etc/inetd.conf
git stream tcp nowait nobody \
/usr/bin/git-daemon git-daemon --inetd --export-all /pub/scm
The actual configuration line should be on one line.
Run gitβdaemon to serve /pub/scm from xinetd.
$ cat /etc/xinetd.d/git-daemon
# default: off
# description: The Git server offers access to Git repositories
service git
{
disable = no
type = UNLISTED
port = 9418
socket_type = stream
wait = no
user = nobody
server = /usr/bin/git-daemon
server_args = --inetd --export-all --base-path=/pub/scm
log_on_failure += USERID
}
Check your xinetd(8) documentation and setup, this is from a Fedora system. Others might be different.
Give push/pull only access to developers using gitβoverβssh.
e.g. those using: $ git push/pull ssh://host.xz/pub/scm/project
$ grep git /etc/passwd (1)
alice:x:1000:1000::/home/alice:/usr/bin/git-shell
bob:x:1001:1001::/home/bob:/usr/bin/git-shell
cindy:x:1002:1002::/home/cindy:/usr/bin/git-shell
david:x:1003:1003::/home/david:/usr/bin/git-shell
$ grep git /etc/shells (2)
/usr/bin/git-shell
/usr/bin/git-shell, which does not allow anything but git push and git pull. The users require ssh access to the machine./etc/shells needs to list what is used as the login shell.CVSβstyle shared repository.
$ grep git /etc/group (1)
git:x:9418:alice,bob,cindy,david
$ cd /home/devo.git
$ ls -l (2)
lrwxrwxrwx 1 david git 17 Dec 4 22:40 HEAD -> refs/heads/master
drwxrwsr-x 2 david git 4096 Dec 4 22:40 branches
-rw-rw-r-- 1 david git 84 Dec 4 22:40 config
-rw-rw-r-- 1 david git 58 Dec 4 22:40 description
drwxrwsr-x 2 david git 4096 Dec 4 22:40 hooks
-rw-rw-r-- 1 david git 37504 Dec 4 22:40 index
drwxrwsr-x 2 david git 4096 Dec 4 22:40 info
drwxrwsr-x 4 david git 4096 Dec 4 22:40 objects
drwxrwsr-x 4 david git 4096 Nov 7 14:58 refs
drwxrwsr-x 2 david git 4096 Dec 4 22:40 remotes
$ ls -l hooks/update (3)
-r-xr-xr-x 1 david git 3536 Dec 4 22:40 update
$ cat info/allowed-users (4)
refs/heads/master alice\|cindy
refs/heads/doc-update bob
refs/tags/v[0-9]* david
Part of the git(1) suite
Generated by phpman v4.9.25-25-g40dbf62 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-15 05:04 @216.73.216.85
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format