basic git practice
v0.2.2

Forkボタンをクリックして、このリポジトリをフォークします。git適切に構成していることを確認してください。
$ git clone [email protected]: < yourName > /basic-git-practice.git開発スキームは、安定したmasterブランチとdevelopという名前の開発ブランチに基づいています。
変更を加える前に、 developから独自のブランチを作成します。
$ cd basic-git-practice
$ git checkout develop # this switches the branch to develop
$ git checkout -b myBranch # this checks out a new branch called myBranch File firstnameLastname.mdをフォルダー_attendeesにコピーし、最初の名前と姓で名前を変更します。
$ cd _attendees
$ cp firstnameLastname.md myFirstnameMyLastname.md次に、お気に入りの編集者で変更を加えてください!
ファイルの編集が完了したら、ファイルをステージに追加してコミットします。
$ git add myFirstnameMyLastname.md
$ git commit -m " Edit the content of the subpage myFirstnameMyLastname "コミットが完了したら、枝をフォークに押し込むことができます。
$ git push origin myBranch
GitHubでフォークを閲覧すると、プルリクエストを開いてレビューのために送信できます。
developを選択してください。
プルリクエストが受け入れたら、オンラインでページを見ることができます! ?