This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| computing:gitserver [2019/11/09 23:06] – oemb1905 | computing:gitserver [2019/11/09 23:08] (current) – oemb1905 | ||
|---|---|---|---|
| Line 80: | Line 80: | ||
| git push | git push | ||
| + | File and directory permission recommendations for git repository contents: | ||
| + | |||
| + | find .git -type d | xargs chmod 755 | ||
| + | find .git/ | ||
| + | find .git -type f | grep -v /objects/ | xargs chmod 644 | ||
| + | | ||
| + | Set the default editor | ||
| + | |||
| + | git config --global core.editor " | ||
| This tutorial is a designated " | This tutorial is a designated " | ||