기타
[Git] github 간단한 명령어 정리
//initialize empty git repository $git init $git config --global user.name "name" $git config --global user.email "email" //make .gitignore, not necessory $vi .gitignore //check status $git status //push code into repository $git add --all . $git commit -m "commit remark" //remote: add remote repository named "origin"(can change) //you can manage remote repository named "origin" $git remote add ..