Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 457 Bytes

File metadata and controls

47 lines (39 loc) · 457 Bytes

step1

git init

step2

git add .

step3

git commit -m "<コミットメッセージ>"

step4

git remote add origin <GitUrl>

set

git remote set-url origin <GitUrl>

step5

git push -u origin <ブランチ名>

二回目以降 push する場合

git add .
git commit -m 
git push

強制PUSH

push

git push -f origin <ブランチ名>