mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2025-05-01 20:42:01 +02:00
Rename chapters into "internals" and "intro"
This commit is contained in:
parent
70fe577788
commit
f3ff5c5147
97 changed files with 0 additions and 0 deletions
levels/internals/ref-move
5
levels/internals/ref-move/description
Normal file
5
levels/internals/ref-move/description
Normal file
|
@ -0,0 +1,5 @@
|
|||
You can point refs to a new location using the same command you use to create them:
|
||||
|
||||
git update-ref refs/<refname> <object>
|
||||
|
||||
As an exercise, make all refs in this repository point to the tree object!
|
3
levels/internals/ref-move/goal
Normal file
3
levels/internals/ref-move/goal
Normal file
|
@ -0,0 +1,3 @@
|
|||
for REF in $(git for-each-ref --format='%(refname)'); do
|
||||
git update-ref "$REF" "$TREE"
|
||||
done
|
10
levels/internals/ref-move/start
Normal file
10
levels/internals/ref-move/start
Normal file
|
@ -0,0 +1,10 @@
|
|||
echo hello > hello
|
||||
echo world > world
|
||||
BLOB1=$(git hash-object -w hello)
|
||||
BLOB2=$(git hash-object -w world)
|
||||
git add .
|
||||
TREE=$(git write-tree)
|
||||
COMMIT=$(git commit-tree $TREE -m "Initial commit")
|
||||
|
||||
git update-ref refs/a "$BLOB1"
|
||||
git update-ref refs/b "$COMMIT"
|
1
levels/internals/ref-move/win
Normal file
1
levels/internals/ref-move/win
Normal file
|
@ -0,0 +1 @@
|
|||
test "$(git show-ref -s | sort -u)" = "c7863f72467ed8dd44f4b8ffdb8b57ca7d91dc9e"
|
Loading…
Add table
Add a link
Reference in a new issue