howto:git
                Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| howto:git [2021/12/26 10:41] – [Test Scenario] va7fi | howto:git [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Git ====== | ||
| - | ===== Test Scenarios ===== | ||
| - | ==== Initial Cloning ==== | ||
| - | Summary: ownership is not preserved. | ||
| - | |||
| - | * Create two files in a '' | ||
| - | |||
| - | * Change their permissions and ownership to match what's on the server:< | ||
| - | ~/ | ||
| - | |||
| - | total 24 | ||
| - | -rwxrwx--- 1 ptruchon www-data 26 Dec 26 10:20 file1.txt | ||
| - | -rwxrwx--- 1 ptruchon www-data 26 Dec 26 10:20 file2.txt | ||
| - | </ | ||
| - | |||
| - | * Initialize git:< | ||
| - | git init | ||
| - | git add . | ||
| - | git commit -m ' | ||
| - | git log | ||
| - | |||
| - | commit 0e5ccdedd1c9188996aadad3a8e2be5a319ab789 (HEAD -> master) | ||
| - | Author: Patrick Truchon < | ||
| - | Date: Sun Dec 26 10:21:24 2021 -0800 | ||
| - | |||
| - | initial commit on remote | ||
| - | </ | ||
| - | |||
| - | * Create a local folder and clone from remote:< | ||
| - | git clone ~/ | ||
| - | </ | ||
| - | |||
| - | * The log on the local copy looks good:< | ||
| - | ~/ | ||
| - | |||
| - | commit 0e5ccdedd1c9188996aadad3a8e2be5a319ab789 (HEAD -> master, origin/ | ||
| - | Author: Patrick Truchon < | ||
| - | Date: Sun Dec 26 10:21:24 2021 -0800 | ||
| - | |||
| - | initial commit on remote | ||
| - | </ | ||
| - | |||
| - | * But the '' | ||
| - | ~/ | ||
| - | |||
| - | total 24 | ||
| - | -rwxrwxr-x 1 ptruchon ptruchon 26 Dec 26 10:24 file1.txt | ||
| - | -rwxrwxr-x 1 ptruchon ptruchon 26 Dec 26 10:24 file2.txt | ||
| - | </ | ||
| - | |||
| - | * Change the group back to '' | ||
| - | sudo chgrp www-data * | ||
| - | ls -l | ||
| - | |||
| - | total 24 | ||
| - | -rwxrwxr-x 1 ptruchon www-data 26 Dec 26 10:24 file1.txt | ||
| - | -rwxrwxr-x 1 ptruchon www-data 26 Dec 26 10:24 file2.txt | ||
| - | </ | ||
howto/git.1640544077.txt.gz · Last modified:  by va7fi
                
                
