Skip to content

Latest commit

 

History

History
43 lines (22 loc) · 516 Bytes

Git.md

File metadata and controls

43 lines (22 loc) · 516 Bytes

git config --global user.name "daya-prac"

git config --global user.email [email protected]

git config --list

git init

git clone git://github.com/daya-prac/Python-prac

git status

vim test_git.py

git add test_git.py

git status

git commit

git config --list

git commit

git config --global core.editor vim

git config --list

git commit

git config --global merge.tool vimdiff

git config --list

git fetch

git pull

git add test_git.py

git push https://github.com/daya-prac/Python-prac.git

git status