컴퓨터/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

'컴퓨터 > Python' 카테고리의 다른 글

python pyautogui 기업농협로그인 ie webdriver  (0) 2019.05.22
python pillow 화면캡쳐  (0) 2019.05.22
python 메모장에 글쓰기  (0) 2019.05.15
python 다른프로그램 실행  (0) 2019.05.14
pyautogui keyDown  (0) 2019.05.14