summaryrefslogtreecommitdiff
path: root/Technology/Git.md
diff options
context:
space:
mode:
Diffstat (limited to 'Technology/Git.md')
-rw-r--r--Technology/Git.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/Technology/Git.md b/Technology/Git.md
deleted file mode 100644
index e962bb4..0000000
--- a/Technology/Git.md
+++ /dev/null
@@ -1,34 +0,0 @@
-git config --global core-pager 'less -FRX'
-git config --local status.showUntrackedFiles no
-
-git init = work
-git init --bare = share
-
-# Add new project on git server
-# on server
-cd /var/git
-mkdir folder
-chown git:git -R folder // or su - git
-cd folder
-git init --bare
-# on machine
-cd /my/project
-git init
-git add .
-git commit -m 'blah blah'
-git remote add origin git@207.148.118.14:/var/git/folder
-
-
-
-git remote -v
-
-???
-
-git push git@afu.re:/var/git/dwm
-
-
-## git for dotfiles
-
-git init --bare $HOME/.g
-alias g='/usr/bin/git --git-dir=$HOME/.g/ --work-tree=$HOME'
-g config --local status.showUntrackedFiles no