git bashコマンドの整理


検索のたびに、普段よく使うgit bashコマンドを整理したいです.実際、よく使うので、これらのコマンドは自動的に暗記されます.
$git init
舞台を上下する
$git add 파일이름 //파일을 git 스테이지에 추가
$git add . //모든 파일을 추가
$git add -A  //수정된 파일을 추가
$git status - 현재 add로 스테이지된 내역 확인

$git status 결과
$git restore --staged 파일이름 - 파일을 스테이지에서 내리기
Repositoryへの接続
$git remote -v  //연결 확인
$git remote add 연결이름 url
$git remote remove 연결이름
git ignoreの適用
[Git] .gitignoreを使用して不要なファイルをアップロードする
Commit & Push
git commit -m "message"
git push 연결이름 branch이름