by shigemk2

当面は技術的なことしか書かない

codebreak;を試してみる

codebreak;を試してみた。
GitHub的なやつ。

GitHubとちがって、プライベートリポジトリも無料で作れる(GitHubは月7ドル、学割はきくけど)

なお、リポジトリを作成するガイドラインもきれいにのっているので、わりと便利かもしれない

新規リポジトリをコマンドラインで作成、登録する場合

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://shigemk2@git.codebreak.com/shigemk2/Test2.git
git push -u origin master

既存リポジトリを登録する場合

git remote add origin https://shigemk2@git.codebreak.com/shigemk2/Test2.git
git push -u origin master

やっぱり、プライベートリポジトリを作るっていうソリューションなのか
GithubでPull Requestは絶対消せない。ヤバい\(^o^)/オワタ - sinsokuのブログ