by Michal Jurosz (mj41)
generated: 23.6.2015
"I really really designed it coming at the problem from the viewpoint of a filesystem person (hey, kernels is what I do), and I actually have absolutely zero interest in creating a traditional SCM system."
-- Linus Torvals
Apr 7, Linus Torvals - based on BitKeeper concepts
Msg: Initial revision of "git", the information manager
from hell
Author: Linus Torvalds <torvalds@ppc970.osdl.org>
Date: Thu Apr 7 15:13:13 2005 -0700
Files: cat-file.c, commit-tree.c, show-diff.c, ...
May 26 - Linux 2.6.12 - the first release with Git
Questions?
> git help
usage: git [--version] [--help] [-C <path>] [-c name=value]
[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
<command> [<args>]
The most commonly used git commands are:
add Add file contents to the index
bisect Find by binary search the change that introduced a bug
branch List, create, or delete branches
checkout Checkout a branch or paths to the working tree
clone Clone a repository into a new directory
commit Record changes to the repository
diff Show changes between commits, commit and working tree, etc
fetch Download objects and refs from another repository
grep Print lines matching a pattern
init Create an empty Git repository or reinitialize an existing one
log Show commit logs
merge Join two or more development histories together
mv Move or rename a file, a directory, or a symlink
pull Fetch from and integrate with another repository or a local branch
push Update remote refs along with associated objects
rebase Forward-port local commits to the updated upstream head
reset Reset current HEAD to the specified state
rm Remove files from the working tree and from the index
show Show various types of objects
status Show the working tree status
tag Create, list, delete or verify a tag object signed with GPG
'git help -a' and 'git help -g' lists available subcommands and some
concept guides. See 'git help <command>' or 'git help <concept>'
to read about a specific subcommand or concept.
> git help -a
usage: git [--version] [--help] [-C <path>] [-c name=value]
[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
<command> [<args>]
available git commands in '/usr/libexec/git-core'
add merge-one-file
add--interactive merge-ours
am merge-recursive
annotate merge-resolve
apply merge-subtree
archive merge-tree
bisect mergetool
bisect--helper mktag
blame mktree
branch mv
bundle name-rev
cat-file notes
check-attr pack-objects
check-ignore pack-redundant
check-mailmap pack-refs
check-ref-format patch-id
checkout prune
checkout-index prune-packed
cherry pull
cherry-pick push
clean quiltimport
clone read-tree
column rebase
commit receive-pack
commit-tree reflog
config relink
count-objects remote
credential remote-ext
credential-cache remote-fd
credential-cache--daemon remote-ftp
credential-gnome-keyring remote-ftps
credential-store remote-http
describe remote-https
diff repack
diff-files replace
diff-index request-pull
diff-tree rerere
difftool reset
difftool--helper rev-list
fast-export rev-parse
fast-import revert
fetch rm
fetch-pack send-pack
filter-branch sh-i18n--envsubst
fmt-merge-msg shell
for-each-ref shortlog
format-patch show
fsck show-branch
fsck-objects show-index
gc show-ref
get-tar-commit-id stage
grep stash
hash-object status
help stripspace
http-backend submodule
http-fetch subtree
http-push symbolic-ref
imap-send tag
index-pack unpack-file
init unpack-objects
init-db update-index
instaweb update-ref
log update-server-info
ls-files upload-archive
ls-remote upload-pack
ls-tree var
mailinfo verify-commit
mailsplit verify-pack
merge verify-tag
merge-base web--browse
merge-file whatchanged
merge-index write-tree
merge-octopus
'git help -a' and 'git help -g' lists available subcommands and some
concept guides. See 'git help <command>' or 'git help <concept>'
to read about a specific subcommand or concept.
> cd ~/git-tt
> mkdir repo-MJ
> cd repo-MJ
> git init
Initialized empty Git repository in /home/linus/git-tt/repo-MJ/.git/
> ls -a
.
..
.git
> tree -aF .git
.git
|-- HEAD
|-- branches/
|-- config*
|-- description
|-- hooks/
|-- info/
| `-- exclude
|-- objects/
| |-- info/
| `-- pack/
`-- refs/
|-- heads/
`-- tags/
9 directories, 4 files
> pwd
/home/linus/git-tt/repo-MJ
> echo "textA line 1" > fileA.txt
> echo "textB line 1" > fileB.txt
> ls -a
.
..
.git
fileA.txt
fileB.txt
> git status
On branch master
Initial commit
Untracked files:
(use "git add <file>..." to include in what will be committed)
fileA.txt
fileB.txt
nothing added to commit but untracked files present (use "git add" to track)
> git status --short
?? fileA.txt
?? fileB.txt
NAME
git-ls-files - Show information about files in the index and
the working tree
> git ls-files --cached
> git add fileA.txt
> git ls-files --cached
fileA.txt
> git status
On branch master
Initial commit
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: fileA.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
fileB.txt
> git status --short
A fileA.txt
?? fileB.txt
> git hash-object fileA.txt
8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
> find .git/objects -type f
.git/objects/8e/4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
> git add fileA.txt
> find .git/objects -type f
.git/objects/8e/4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
> tree -aF .git
.git .git
|-- HEAD |-- HEAD
|-- branches/ |-- branches/
|-- config* |-- config*
|-- description |-- description
|-- hooks/ |-- hooks/
> |-- index
|-- info/ |-- info/
| `-- exclude | `-- exclude
|-- objects/ |-- objects/
> | |-- 8e/
> | | `-- 4b68ee140cfbea
| |-- info/ | |-- info/
| `-- pack/ | `-- pack/
`-- refs/ `-- refs/
|-- heads/ |-- heads/
`-- tags/ `-- tags/
> hexdump .git/objects/8e/4b68ee140cfbeaee5d38671cb03c83d1b6f2a4 | head -n1
0000000 0178 ca4b 4fc9 3052 6634 4928 28ad 5471
git-cat-file - Provide content or type and size information
> git cat-file -p 8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
textA line 1
> git cat-file -t 8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
blob
> git cat-file -s 8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
13
> git hash-object fileA.txt
8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
> git cat-file -t 8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
blob
> file .git/index
.git/index: Git index, version 2, 1 entries
> git ls-files --cached
fileA.txt
> find .git/objects -type f | head -n 5
.git/objects/8e/4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
> git commit -m"commit 01 message"
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: empty ident name (for <linus@b1547353bfef.(none)>) not allowed
> cat ~/.gitconfig
cat: /home/linus/.gitconfig: No such file or directory
> git config --global user.email "mj@mj41.cz"
> git config --global user.name "Michal Jurosz"
> cat ~/.gitconfig
[user]
email = mj@mj41.cz
name = Michal Jurosz
> git config --local git-course-conf.local-var1 mj41
> git config git-course-conf.local-var1 mj41
> grep git-course-conf -A 2 .git/config
[git-course-conf]
local-var1 = mj41
> git config --remove-section git-course-conf
> grep git-course-conf -A 2 .git/config
> sudo git config --system git-course-conf.system-var1 system-mj41
> cat /etc/gitconfig
cat: /etc/gitconfig: No such file or directory
> git config --global alias.st status
> git config --global alias.ci commit
> git config --global alias.co checkout
> git config --global alias.br branch
> git commit -m"commit 01 message"
[master (root-commit) ae986a0] commit 01 message
1 file changed, 1 insertion(+)
create mode 100644 fileA.txt
> git log
commit ae986a0a2ce91eb540cdf7d5db62b23f421eb683
Author: Michal Jurosz <mj@mj41.cz>
Date: Tue Jun 23 16:13:51 2015 -0400
commit 01 message
> git log --oneline --decorate
ae986a0 (HEAD, master) commit 01 message
> tree -aF .git
.git .git
> |-- COMMIT_EDITMSG
|-- HEAD |-- HEAD
|-- branches/ |-- branches/
|-- config* |-- config*
|-- description |-- description
|-- hooks/ |-- hooks/
|-- index |-- index
|-- info/ |-- info/
| `-- exclude | `-- exclude
> |-- logs/
> | |-- HEAD
> | `-- refs/
> | `-- heads/
> | `-- master
|-- objects/ |-- objects/
|-- objects/ |-- objects/
> | |-- 4a/
> | | `-- f19c541178897f
| |-- 8e/ | |-- 8e/
| | `-- 4b68ee140cfbea | | `-- 4b68ee140cfbea
> | |-- ae/
> | | `-- 986a0a2ce91eb5
| |-- info/ | |-- info/
| `-- pack/ | `-- pack/
`-- refs/ `-- refs/
|-- heads/ |-- heads/
> | `-- master
`-- tags/ `-- tags/
> cat .git/COMMIT_EDITMSG
commit 01 message
> find .git/objects -type f
.git/objects/4a/f19c541178897fb76436c785b2b86d8e9fb9f7
.git/objects/ae/986a0a2ce91eb540cdf7d5db62b23f421eb683
.git/objects/8e/4b68ee140cfbeaee5d38671cb03c83d1b6f2a4
> git cat-file -t 4af19c541178897fb76436c785b2b86d8e9fb9f7
tree
> git cat-file -p 4af19c541178897fb76436c785b2b86d8e9fb9f7
100644 blob 8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4 fileA.txt
> git cat-file -t ae986a0a2ce91eb540cdf7d5db62b23f421eb683
commit
> git cat-file -p ae986a0a2ce91eb540cdf7d5db62b23f421eb683
tree 4af19c541178897fb76436c785b2b86d8e9fb9f7
author Michal Jurosz <mj@mj41.cz> 1435090431 -0400
committer Michal Jurosz <mj@mj41.cz> 1435090431 -0400
commit 01 message
> git log -n1
commit ae986a0a2ce91eb540cdf7d5db62b23f421eb683
Author: Michal Jurosz <mj@mj41.cz>
Date: Tue Jun 23 16:13:51 2015 -0400
commit 01 message
> touch tempf.tmp
> mkdir -p tmp ; touch tmp/tf.txt
> git status --short
?? fileB.txt
?? tempf.tmp
?? tmp/
> echo 'tmp/' > .gitignore
> echo '*.tmp' >> .gitignore
> git status --short
?? .gitignore
?? fileB.txt
> git add .gitignore
> cat fileB.txt
textB line 1
> git add fileB.txt
> git commit -m"commit 02 message"
[master 5f6be83] commit 02 message
2 files changed, 3 insertions(+)
create mode 100644 .gitignore
create mode 100644 fileB.txt
> git log --decorate --graph --pretty=format:'%h -%d %s <%ae>' --all
* 5f6be83 - (HEAD, master) commit 02 message <mj@mj41.cz>
* ae986a0 - commit 01 message <mj@mj41.cz>
> git branch BRc2
> echo "textB line 2" >> fileB.txt
> cat fileB.txt
textB line 1
textB line 2
> mkdir dirH
> echo "textHC line 1" > dirH/fileHC.txt
> git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: fileB.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
dirH/
no changes added to commit (use "git add" and/or "git commit -a")
> git add fileB.txt
> git add dirH
> git status
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: dirH/fileHC.txt
modified: fileB.txt
> git commit -m"commit 03 message"
[master e18dcb7] commit 03 message
2 files changed, 2 insertions(+)
create mode 100644 dirH/fileHC.txt
> echo "textHC line 2" >> dirH/fileHC.txt
> git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: dirH/fileHC.txt
no changes added to commit (use "git add" and/or "git commit -a")
> git commit -a -m"commit 04 message"
[master d256161] commit 04 message
1 file changed, 1 insertion(+)
> git cat-file -t 2afe2cf674f123661ecbf68b698f1ffd4a1f5f23
tree
> git cat-file -p 2afe2cf674f123661ecbf68b698f1ffd4a1f5f23
100644 blob 60d6882bff469b815a3ba2334520ee7987f0bc92 .gitignore
040000 tree f584e5928a3315c4dc8dcf09b46d3e4d8d711f83 dirH
100644 blob 8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4 fileA.txt
100644 blob 3d67da922cae213e0ba10593c31c763543c97fee fileB.txt
> git cat-file -t f584e5928a3315c4dc8dcf09b46d3e4d8d711f83
tree
> git cat-file -p f584e5928a3315c4dc8dcf09b46d3e4d8d711f83
100644 blob 7dd188dd69574eee96bc02f5783a01eceb30f8c3 fileHC.txt
> git cat-file -t 7dd188dd69574eee96bc02f5783a01eceb30f8c3
blob
> git cat-file -p 7dd188dd69574eee96bc02f5783a01eceb30f8c3
textHC line 1
textHC line 2
> git status --short
> git ls-files -s
100644 60d6882bff469b815a3ba2334520ee7987f0bc92 0 .gitignore
100644 7dd188dd69574eee96bc02f5783a01eceb30f8c3 0 dirH/fileHC.txt
100644 8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4 0 fileA.txt
100644 3d67da922cae213e0ba10593c31c763543c97fee 0 fileB.txt
> echo "textHC line 3" >> dirH/fileHC.txt
> git add -A ; git status --short
M dirH/fileHC.txt
> git ls-files -s
100644 60d6882bff469b815a3ba2334520ee7987f0bc92 0 .gitignore
100644 69694edab7d1f25fc6565ce60c6818dd615833e1 0 dirH/fileHC.txt
100644 8e4b68ee140cfbeaee5d38671cb03c83d1b6f2a4 0 fileA.txt
100644 3d67da922cae213e0ba10593c31c763543c97fee 0 fileB.txt
> git log --oneline --decorate -n2
d256161 (HEAD, master) commit 04 message
e18dcb7 commit 03 message
> cat .git/HEAD
ref: refs/heads/master
> git symbolic-ref HEAD
refs/heads/master
> cat .git/refs/heads/master
d2561617a1cf9677c45faf6b8c9529ec585c7310
> git rev-parse --short refs/heads/master
d256161
Questions?
> find .git/objects -type f | wc -l
17
> du -hs .git/objects
144K .git/objects
> find .git/objects -type f | head -n 10
.git/objects/44/dba16a657baed8a09f68312c985dff84e3134c
.git/objects/f5/84e5928a3315c4dc8dcf09b46d3e4d8d711f83
.git/objects/5f/6be83d0aff9b61748c50f6d8ebada2bc1e7252
.git/objects/7d/d188dd69574eee96bc02f5783a01eceb30f8c3
.git/objects/69/694edab7d1f25fc6565ce60c6818dd615833e1
.git/objects/8c/87fa6ad6c88318d1a528e99b810a6a49c65ffe
.git/objects/4a/f19c541178897fb76436c785b2b86d8e9fb9f7
.git/objects/60/d6882bff469b815a3ba2334520ee7987f0bc92
.git/objects/2c/6d17d9a575eaad00602fb90e91aa98b5777cd6
.git/objects/2a/fe2cf674f123661ecbf68b698f1ffd4a1f5f23
> git gc --aggressive --prune
> tree -aF .git/objects
.git/objects
|-- 69/
| `-- 694edab7d1f25fc6565ce60c6818dd615833e1
|-- info/
| `-- packs
`-- pack/
|-- pack-89889a90f3e271f6fcd7d6c451c215afc23be03b.idx
`-- pack-89889a90f3e271f6fcd7d6c451c215afc23be03b.pack
3 directories, 4 files
> du -hs .git/objects
32K .git/objects
> git cat-file -p 7dd188dd69574eee96bc02f5783a01eceb30f8c3
textHC line 1
textHC line 2
> tree -aF .git/refs
.git/refs
|-- heads/
`-- tags/
2 directories, 0 files
> cat .git/packed-refs
# pack-refs with: peeled fully-peeled
5f6be83d0aff9b61748c50f6d8ebada2bc1e7252 refs/heads/BRc2
d2561617a1cf9677c45faf6b8c9529ec585c7310 refs/heads/master
> echo "textA line 2" >> fileA.txt ; git add -A
> tree --noreport -aF .git | grep -A 100 'objects/'
|-- objects/
| |-- 69/
| | `-- 694edab7d1f25fc6565ce60c6818dd615833e1
| |-- e3/
| | `-- 1d478f6c73239c2452b571b9b07c33d568d330
| |-- info/
| | `-- packs
| `-- pack/
| |-- pack-89889a90f3e271f6fcd7d6c451c215afc23be03b.idx
| `-- pack-89889a90f3e271f6fcd7d6c451c215afc23be03b.pack
|-- packed-refs
`-- refs/
|-- heads/
`-- tags/
> git reset --hard HEAD
HEAD is now at d256161 commit 04 message
> echo "textA line 2" >> fileA.txt
> git add -A
> echo "textA line 3" >> fileA.txt
> git diff
diff --git a/fileA.txt b/fileA.txt
index e31d478..abd231e 100644
--- a/fileA.txt
+++ b/fileA.txt
@@ -1,2 +1,3 @@
textA line 1
textA line 2
+textA line 3
> git diff --cached
diff --git a/fileA.txt b/fileA.txt
index 8e4b68e..e31d478 100644
--- a/fileA.txt
+++ b/fileA.txt
@@ -1 +1,2 @@
textA line 1
+textA line 2
> git diff HEAD
diff --git a/fileA.txt b/fileA.txt
index 8e4b68e..abd231e 100644
--- a/fileA.txt
+++ b/fileA.txt
@@ -1 +1,3 @@
textA line 1
+textA line 2
+textA line 3
> git diff HEAD~3 HEAD~2
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..60d6882
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+tmp/
+*.tmp
diff --git a/fileB.txt b/fileB.txt
new file mode 100644
index 0000000..44dba16
--- /dev/null
+++ b/fileB.txt
@@ -0,0 +1 @@
+textB line 1
<rev>~<n> - e.g. master~3
> git log -n3 --oneline --decorate
d256161 (HEAD, master) commit 04 message
e18dcb7 commit 03 message
5f6be83 (BRc2) commit 02 message
> git rev-parse --short HEAD ; git rev-parse --short HEAD
d256161
d256161
> git rev-parse --short HEAD~2
5f6be83
> git cat-file -t 5f6be83
commit
<rev>:<path>, e.g. HEAD:dirH/fileHC.txt
> git rev-parse --short HEAD~1:dirH/fileHC.txt
5df063b
> git cat-file -t 5df063b
blob
> git log --oneline
d256161 commit 04 message
e18dcb7 commit 03 message
5f6be83 commit 02 message
ae986a0 commit 01 message
> git log HEAD~2 --oneline
5f6be83 commit 02 message
ae986a0 commit 01 message
> git log 'master^{/commit 03}' --oneline
e18dcb7 commit 03 message
5f6be83 commit 02 message
ae986a0 commit 01 message
> git log 'master^{/01}'..'master^{/03}' --oneline
e18dcb7 commit 03 message
5f6be83 commit 02 message
> git log 'master^{/03}'...'master^{/01}' --oneline
e18dcb7 commit 03 message
5f6be83 commit 02 message
> git grep -n 'line 3'
fileA.txt:3:textA line 3
> git grep -n -e 'line 2' HEAD~1 HEAD~2
HEAD~1:fileB.txt:2:textB line 2
> git grep -n --cached 'line 3'
> git grep -n --cached 'line 2'
dirH/fileHC.txt:2:textHC line 2
fileA.txt:2:textA line 2
fileB.txt:2:textB line 2
> git log --oneline -- dirH
d256161 commit 04 message
e18dcb7 commit 03 message
> git log -S 'line 2' --oneline
d256161 commit 04 message
e18dcb7 commit 03 message
> git show d256161
commit d2561617a1cf9677c45faf6b8c9529ec585c7310
Author: Michal Jurosz <mj@mj41.cz>
Date: Tue Jun 23 16:13:52 2015 -0400
commit 04 message
diff --git a/dirH/fileHC.txt b/dirH/fileHC.txt
index 5df063b..7dd188d 100644
--- a/dirH/fileHC.txt
+++ b/dirH/fileHC.txt
@@ -1 +1,2 @@
textHC line 1
+textHC line 2
> git blame dirH/fileHC.txt
e18dcb76 (Michal Jurosz 2015-06-23 16:13:51 -0400 1) textHC line 1
d2561617 (Michal Jurosz 2015-06-23 16:13:52 -0400 2) textHC line 2
Questions?
> git branch -v
BRc2 5f6be83 commit 02 message
* master d256161 commit 04 message
> git branch mj-test
> git branch -v
BRc2 5f6be83 commit 02 message
* master d256161 commit 04 message
mj-test d256161 commit 04 message
> git show-ref --head --abbrev
d256161 HEAD
5f6be83 refs/heads/BRc2
d256161 refs/heads/master
d256161 refs/heads/mj-test
> git branch -v
BRc2 5f6be83 commit 02 message
* master d256161 commit 04 message
mj-test d256161 commit 04 message
> git reset --hard master
HEAD is now at d256161 commit 04 message
> cat fileA.txt
textA line 1
> echo "textA line 2" >> fileA.txt
> git add -A
> echo "textA line 3" >> fileA.txt
> git checkout BRc2
Switched to branch 'BRc2'
M fileA.txt
> git status --short
MM fileA.txt
> git diff --cached | grep '+textA'
+textA line 2
> git diff | grep '+textA'
+textA line 3
> git branch BRc2-pokus
> git branch -v | grep '*'
* BRc2 5f6be83 commit 02 message
> git checkout BRc2-pokus
Switched to branch 'BRc2-pokus'
M fileA.txt
> git branch -v | grep '*'
* BRc2-pokus 5f6be83 commit 02 message
> cat .git/HEAD
ref: refs/heads/BRc2-pokus
> git checkout -b BRc2-mod
Switched to a new branch 'BRc2-mod'
M fileA.txt
> git branch -d BRc2-pokus
Deleted branch BRc2-pokus (was 5f6be83).
> git branch -v
BRc2 5f6be83 commit 02 message
* BRc2-mod 5f6be83 commit 02 message
master d256161 commit 04 message
mj-test d256161 commit 04 message
> git ci -m"branch c2-mod commit A"
[BRc2-mod 3fad108] branch c2-mod commit A
1 file changed, 1 insertion(+)
> git ci -a -m"branch c2-mod commit B"
[BRc2-mod 4934036] branch c2-mod commit B
1 file changed, 1 insertion(+)
> echo "textX line 1" >> fileX.txt
> git add fileX.txt
> git ci -a -m"branch c2-mod commit C - add fileX"
[BRc2-mod 77bb4ff] branch c2-mod commit C - add fileX
1 file changed, 1 insertion(+)
create mode 100644 fileX.txt
> git log --all --graph --date-order --decorate --oneline
* 77bb4ff (HEAD, BRc2-mod) branch c2-mod commit C - add fileX
* 4934036 branch c2-mod commit B
* 3fad108 branch c2-mod commit A
| * d256161 (mj-test, master) commit 04 message
| * e18dcb7 commit 03 message
|/
* 5f6be83 (BRc2) commit 02 message
* ae986a0 commit 01 message
> git branch -D mj-test
Deleted branch mj-test (was d256161).
> git checkout master
Switched to branch 'master'
> git merge BRc2-mod
Merge made by the 'recursive' strategy.
fileA.txt | 2 ++
fileX.txt | 1 +
2 files changed, 3 insertions(+)
create mode 100644 fileX.txt
> git log --all --graph --date-order --decorate --oneline
* b2e74a9 (HEAD, master) Merge branch 'BRc2-mod'
|\
| * 77bb4ff (BRc2-mod) branch c2-mod commit C - add fileX
| * 4934036 branch c2-mod commit B
| * 3fad108 branch c2-mod commit A
* | d256161 commit 04 message
* | e18dcb7 commit 03 message
|/
* 5f6be83 (BRc2) commit 02 message
* ae986a0 commit 01 message
> cd ~/git-tt
> git init git-tut-origin --bare
Initialized empty Git repository in /home/linus/git-tt/git-tut-origin/
> ls git-tut-origin
HEAD
branches
config
description
hooks
info
objects
refs
> cd ~/git-tt/repo-MJ
> git remote add origin file:///home/linus/git-tt/git-tut-origin
> git push origin HEAD
To file:///home/linus/git-tt/git-tut-origin
* [new branch] HEAD -> master
> git log --decorate --oneline
b2e74a9 (HEAD, origin/master, master) Merge branch 'BRc2-mod'
77bb4ff (BRc2-mod) branch c2-mod commit C - add fileX
4934036 branch c2-mod commit B
3fad108 branch c2-mod commit A
d256161 commit 04 message
5f6be83 (BRc2) commit 02 message
e18dcb7 commit 03 message
ae986a0 commit 01 message
> cd ~/git-tt/repo-MJ
> git remote -v
origin file:///home/linus/git-tt/git-tut-origin (fetch)
origin file:///home/linus/git-tt/git-tut-origin (push)
git-fetch - Download objects and refs from another repository
> git fetch
> cd ~/git-tt
> git clone file:///home/linus/git-tt/git-tut-origin repo-Pepy
Cloning into 'repo-Pepy'...
> cd repo-Pepy
> git remote -v
origin file:///home/linus/git-tt/git-tut-origin (fetch)
origin file:///home/linus/git-tt/git-tut-origin (push)
> ls
dirH
fileA.txt
fileB.txt
fileX.txt
> ls
dirH
fileA.txt
fileB.txt
fileX.txt
> git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
> git log --decorate --oneline --graph --all
* b2e74a9 (HEAD, origin/master, origin/HEAD, master) Merge branch 'BRc2-mod'
|\
| * 77bb4ff branch c2-mod commit C - add fileX
| * 4934036 branch c2-mod commit B
| * 3fad108 branch c2-mod commit A
* | d256161 commit 04 message
* | e18dcb7 commit 03 message
|/
* 5f6be83 commit 02 message
* ae986a0 commit 01 message
> cd ../repo-MJ
> git remote add upstream git@github.com:mj41/git-fsdvcs-up.git
> git fetch upstream
> git remote -v
origin file:///home/linus/git-tt/git-tut-origin (fetch)
origin file:///home/linus/git-tt/git-tut-origin (push)
upstream git@github.com:mj41/git-fsdvcs-up.git (fetch)
upstream git@github.com:mj41/git-fsdvcs-up.git (push)
> git config --local --list | grep remote
remote.origin.url=file:///home/linus/git-tt/git-tut-origin
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
remote.upstream.url=git@github.com:mj41/git-fsdvcs-up.git
remote.upstream.fetch=+refs/heads/*:refs/remotes/upstream/*
> git checkout -b BRnp
Switched to a new branch 'BRnp'
> echo "textA line 4 - BRnp" >> fileA.txt
> git commit -a -m"branch np commit k"
[BRnp ba524e8] branch np commit k
1 file changed, 1 insertion(+)
> git push origin HEAD
To file:///home/linus/git-tt/git-tut-origin
* [new branch] HEAD -> BRnp
> cd ../repo-Pepy
> git fetch
From file:///home/linus/git-tt/git-tut-origin
* [new branch] BRnp -> origin/BRnp
> git log --decorate --oneline --graph
* b2e74a9 (HEAD, origin/master, origin/HEAD, master) Merge branch 'BRc2-mod'
|\
| * 77bb4ff branch c2-mod commit C - add fileX
| * 4934036 branch c2-mod commit B
| * 3fad108 branch c2-mod commit A
* | d256161 commit 04 message
* | e18dcb7 commit 03 message
|/
* 5f6be83 commit 02 message
* ae986a0 commit 01 message
> cd ../repo-MJ
> git checkout master
Switched to branch 'master'
> git log --decorate --oneline --all --graph | head -n5
* ba524e8 (origin/BRnp, BRnp) branch np commit k
* b2e74a9 (HEAD, origin/master, master) Merge branch 'BRc2-mod'
|\
| * 77bb4ff (BRc2-mod) branch c2-mod commit C - add fileX
| * 4934036 branch c2-mod commit B
> git reset --hard origin/BRnp
HEAD is now at ba524e8 branch np commit k
> git log --decorate --oneline --all --graph | head -n5
* ba524e8 (HEAD, origin/BRnp, master, BRnp) branch np commit k
* b2e74a9 (origin/master) Merge branch 'BRc2-mod'
|\
| * 77bb4ff (BRc2-mod) branch c2-mod commit C - add fileX
| * 4934036 branch c2-mod commit B
> git push origin HEAD
To file:///home/linus/git-tt/git-tut-origin
b2e74a9..ba524e8 HEAD -> master
Questions?
Michal Jurosz (mj41)
www.GoodData.com
Generated from github.com/mj41/git-course-mj41 source
by Presentation::Builder
inside prbuilder Docker container.
Powered by reveal.js.