Przeglądaj źródła

book: contrib tor section, add info on setting gitconfig name/email.

darkfi 2 lat temu
rodzic
commit
e72751a02b
1 zmienionych plików z 14 dodań i 0 usunięć
  1. 14 0
      doc/src/dev/contrib/tor.md

+ 14 - 0
doc/src/dev/contrib/tor.md

@@ -72,3 +72,17 @@ And then finally it should work. Make sure you use `git push -u codeb master`
 to update your main source to codeberg over Tor. You don't want to accidentally
 to update your main source to codeberg over Tor. You don't want to accidentally
 git push to github and dox yourself.
 git push to github and dox yourself.
 
 
+## Git Config
+
+Lastly you can still be identified by your machine's Git config, if pushing
+to external repos on clearnet.
+However we can set per project settings, so inside the darkfi repo, run
+these commands:
+
+```
+git config user.name darkfi
+git config user.email darkfi@darkfi
+```
+
+Verify it has been set with `cat .git/config`.
+