gitにコミットするときの呪文たち
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/XXX/XXX.git
git push -u origin master
gitとの接続がhttpsだとgit push毎にパスワード聞かれるので、
うっとおしいわ!っていう人はorigin以下をsshのほうで設定すればOK
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
gitにコミットするときの呪文たち
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/XXX/XXX.git
git push -u origin master
gitとの接続がhttpsだとgit push毎にパスワード聞かれるので、
うっとおしいわ!っていう人はorigin以下をsshのほうで設定すればOK
Register as a new user and use Qiita more conveniently
Go to list of users who liked