Skip to content

LCMeed/learning-git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

learning-git

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

Clone the Repo

git clone git@github.com: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/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages