-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
# notes | ||
|
||
sudo apt-get install git git-lfs make | ||
# ssh keys on all accounts | ||
sudo apt-get install git git-lfs make | ||
|
||
if possible use rsync from another machine | ||
rsync -Wav --progress machine:~/projects projects | ||
## setup | ||
|
||
To avoid github bandwidth limits, if possible use rsync from another machine. | ||
|
||
# git clone --recursive | ||
# git submodule update --init ## if anything fails part way | ||
# make pull # ensure on master globally | ||
rsync -Wav --progress machine:~/projects projects | ||
|
||
instead of | ||
|
||
git clone --recursive | ||
|
||
but maybe git clone from machine also works. | ||
|
||
git submodule update --init ## if anything fails part way | ||
|
||
|
||
## convenience | ||
|
||
make | ||
make pull | ||
make push |