As you now know, Git is a version control system. The Learn platform at Flatiron school has a deep integration with Git and GitHub. GitHub is an online hosting platform that uses Git. We need to teach you just enough Git to interact with GitHub like a real developer. While you can run Python notebooks on the Learn platform itself, you'll also want to be able to download material to your local computer so you can work on it there.
You will be able to:
- Describe the difference between a forked and a cloned respository
- Use
git clone
to clone a repository - Use
git add
,git commit
, andgit push
to make changes to a repository - Compare local and remote repositories
As you can see from the objectives above, we're going to dive in and use several Git commands in this lesson.
The first thing we'll look at is forking, a concept from the GitHub platform.
Forking is the process of making a personal copy of the Learn lab on GitHub. It's basically how you tell Learn that you have started working on a lab.
Afterward, we'll then use git clone
from a bash shell like terminal or git bash in order to copy the material from the web to our local computer.
From there, Git will allow us to continue to track and incorporate changes that we make to our work.
git status
allows us to see if we have made any changes.
If we have made changes that we would like to save to our version control history, we can then use git add
to add the changed files to the version history and git commit
to finalize the process. Finally, we can then use git push
to push our changes to the web so that we or collaborators can access them from anywhere.
Now that you have a brief overview of what we're about to dive into, let's go through the process step by step.
To use Git, we're going back to the bash shell (mac: terminal, windows: git bash) once again! To start:
- Create a folder on your computer for your course materials and navigate into it (preferably using
mkdir
andcd
) - Then create a subfolder titled "Section1", "Bash_and_Git" (or whatever you find to be an appropriate title) and navigate into that
- Return to your web browser and navigate to the lesson you want to download
- Click the GitHub icon
You'll be redirected to the associated github repository like this.
- Click the fork button, as shown above in order to create a copy to your personal account which you can edit and update.
After a moment of this:
You'll be redirected to your new personal copy of the repository:
Now that you have your own copy (by forking), we're going to download this copy to your local computer using git clone
.
-
Copy the URL
- Mac: Press cmd+L to highlight the url bar and cmd+c to copy the url
- Windows: Press Ctrl+L to highlight the url bar and Ctrl+c to copy the url
-
Return to your bash shell
-
Type: git clone and paste your repo url (cmd + v or Ctrl+V)
** Voila! **
The repository and all of its contents will be downloaded locally to your computer!
You should be able to see the new folder by listing the files in the current directory with ls
.
You can then navigate into the git directory with cd directory_name
.
Now that you have a local copy, we can further investigate some more Git commands for version control. Note that for these to work you must be in the git folder (the one you just cloned above). Make sure to navigate into the folder using the cd
command.
Once you have a Git repository downloaded locally, Git will keep track of every change you make to the code in that folder. You can ask Git what the differences or changes you've made since the last commit by typing git status
into your terminal.
It's really helpful to constantly get the status from Git to see what changes you need to stage, add, commit, or push.
Adding changes with the git add
command is a way to stage any changes and get them ready to be a permanent record in your Git log via a commit. The workflow worth memorizing right now is to simply add all your changes via git add .
.
A commit is a permanent moment in time in your Git history. A commit creates a new version of your code. To commit, memorize this command. git commit -am "Your commit message"
. You are using the git commit
command with the flags -am
, which tell Git to commit all the changes and to include a commit message. You supply the commit message in ""
directly in the command, "Your commit message"
.
Pushing is the process of taking your local code and commits and syncing them, or uploading them, to GitHub. You're updating the GitHub remote (remotes are just fancy names for copies of the repository), generally your fork, represented by a remote named origin
, by pushing your code to the remote. The Git command to do this is simply git push
. When you git push
from within a Git repository, it will take all the commits that you have locally and push them to the online remote.
View Enough Git for Learn on Learn.co and start learning to code for free
In this lesson, we took an introductory look at Git and GitHub. First, we saw how to fork and clone repositories from Learn onto your local machine. From there, we then further discussed how to add changes to git, commit them, and push them online.