Sie sind auf Seite 1von 1

1.

Create a Repository
2. Create a Branch
# Branching. Work on different versions of a repository at a time.
# By default, master is the definitive branch. Edits can be made
# in branches before committing to the master.
# When making a branch, a snapshot of master is created.
3. Make and commit changes
# Saved changes are called 'commits'
# Each commit has an associated 'commit message'
4. Open a Pull Request
# Pull Request. Propose changes and request someone to review.
5. Merge your Pull Request
# from project repository, bring in the changes and test
git fetch origin
git checkout -b readme-edits origin/readme-edits
git merge master

# merge the changes and update on GitHub


git checkout master
git merge --no-ff readme-edits
git push origin master

Das könnte Ihnen auch gefallen