Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 957 Bytes

README.md

File metadata and controls

40 lines (22 loc) · 957 Bytes

learning-git

This is a repository for users to learn how to use git version control.

Clone the Repo

git clone [email protected]:LCMeed/learning-git.git

Create a branch

git checkout -b lisas_first_branch

Modify your code and add it to the staging area

Either add files individually:

git add README.md

Or all at once:

git add *

Check the status of your changes

Make sure all files that you've changed and want to commit show up in the index/staging area.

git status

Commit your changes with a message

git commit -m "I've updated the README guys!"

Push your changes to our remote repo's copy of your branch

git push origin lisas_first_branch

Make a PR

Navigate to the repo and click the "Compare & pull request" button.

Many thanks to Roger Dudler for "git - the simple guide"

https://rogerdudler.github.io/git-guide/