컴퓨터/Python
git
풍경소리^^
2019. 5. 15. 14:14
https://www.youtube.com/watch?v=rhP5pseOJc0
git --version
git config --global user.name 사용자계정
git config --global user.email 사용자이메일
cd d:\git\python
mkdir hello_world
git clone http://github.com/사용자계정/hello_world.git
cd hello_world
git add document.txt
git commit -m "ADD Text File [document.txt]"
git push
-----
git status
git add pyautogui_macro.py #스테이징 에리어에 올리기
git status
git reset pyautogui_macro.py #스케이징 에리어에서 다시 내리기
git status
git add . #모든 파일 스테이징 에리어에 올리기
git status
git commit -m "Add pyautogui_macro [notepad]"
git status
git push