-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-tips.txt
59 lines (44 loc) · 1.59 KB
/
git-tips.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
== Git config:
"~/.gitconfig" or in a per-repository ".git/config"
== Bare Repositories
mkdir -p /srv/git/repo.git
cd /srv/git/repo.git
git init --bare
== Squasing the last 2 commits
git rebase -i HEAD~2
=> select "fixup" for the second commit to merge it with the first
== Create a topic branch
$ git checkout master
$ git pull --rebase
$ git checkout -b my-bug-fix-branch
== Merge a topic branch
(currently on my-bug-fix-branch)
$ git rebase master
$ git checkout master
- If it's only one commit:
$ git merge -ff my-bug-fix-branch
(ff means fast-forward which does internally a rebase if possible, no merge-commit)
- If it's more than one commit
$ git merge --no-ff my-bug-fix-branch
(no-ff means no-fast-forward i.e. the history documents the merge with the fix-branch)
== GIT aliases
create an alias: ("git co" does a checkout)
$ git config --global alias.co checkout
git last shows the previous commit
$ git config --global alias.last 'log -1 HEAD'
== Git commands
Nice log:
$ git log --pretty=oneline --decorate --graph
Fancy log:
$ git log --graph --pretty=format:'%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(cyan)<%an>%Creset' --abbrev-commit --date=relative
Geänderte Dateien zwichen dem letzten und dem vorletzten commit:
$ git diff --name-only HEAD~1 HEAD~2
== Dateien nur teilweise commiten
git add --patch
== Commit-Message
- Erste Zeile nicht länger als 50 Zeichen (Titel)
- Eine Leerzeile
- Ausführliche Beschreibung
- "-" (dash) für Aufzählungen verwenden
Die Option "-m" besser nicht verwenden, es sei denn man hat vor
später den commit zu squashen oder nachzubearbeiten!