0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Git】GitHubの芝に草を生やして意識高いアピールをしたい人のためのモンキーコマンド

Posted at

芝に草を生やしたい……!!

Gitでファイルの更新すればするほど生える芝があります。

image.png

この芝が青々と茂っていることで「あ、この人毎日更新してるやん!! 意識高!!」と見る人に思わせることができます(筆者の思い込み)

今回はこの芝を効率的に生やすためのコマンドを書いておきます。

※筆者環境はcloud9上ですが、ローカル環境でも行けるはず……?

実施コマンド

1.ブランチを切る
まずはブランチを切ります。
間違ってファイルを更新しても、元に戻せるようにしておきます。

git checkout -b new-branch

2.ファイルを更新
ファイルを更新します。
更新したファイル数が多ければ、色が濃くなるので多めに5個ぐらいファイルを更新しておきましょう。

3.gitをローカルからリモートへpush
gitをローカルからリモートにpushします。

#gitにファイルを対象にする
git add -A

#ファイルをローカルリポジトリにコミットします
git commit -m "kusa"

#マスターブランチに変更します。
git checkout master

#更新内容をmasterブランチにマージする
git merge new-branch

リモートリポジトリにpushします。
git push

これで草を生やすことができます。これを毎日繰り返すことで青々と萌える芝を生やすことができます!!

参考

Railsチュートリアル https://railstutorial.jp/chapters/following_users?version=6.0#sec-following
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?