Git Command Line
ExCl → User Documentation → Contributing → Git in the Command Line
Git Workflow from the Command Line
There are many reasons one would prefer to work from the command line. Regardless of your reasons, here is how to contribute to the ExCl documentation using only command line tools.
Jump to a Section:
This guide is adapted from GitHub's documentation.
It is assumed that users of this guide understand basic Git/version control principles. To learn more about Git basics with our basic Git tutorial, visit this page.
Setup
First, use the command line to see if Git is installed.
To install or update Git using your package manager:
CentOS, RedHat:
Debian, Ubuntu:
MacOS, use Homebrew:
Windows: download Git for Windows and install it.
Setup Git with your access credentials to GitHub with the following commands:
You can review the information that you entered during set-up:
git config --global --list
(Optional) Consider adding your SSH key to your GitHub profile so you are not prompted for credentials after every commit. To add your public SSH key to GitHub:
Click on your user image in the top-right of the GitHub window.
Select
Settings
.On the left, click
ssh keys
.Paste your public ssh key in the box, provide a title, and save by clicking
Add key
.
Clone an existing repository. In GitHub, this information is found on the "Overview" page of the repository.
Checkout
If you have already cloned the repository but are returning to your local version after a while, you'll want to make sure your local files are up to date with the branch. You can pull updates from master or branch_name.
You need to create a new branch or checkout an existing branch that can later be merged into the master branch. When naming branches, try to choose something descriptive.
To create a branch:
git checkout -b branch_name
To list existing branches:
git branch -r
To checkout an existing branch:
git checkout --track origin/branch_name
orgit checkout branch_name
Note: You may only have one branch checked out at a time.
Edit
Make edits to the files with your favorite text editor. Save your changes.
Add
Git places "added" files in a staging area as it is waiting for you finalize your changes.
Commit
When you have added (or staged) all of your changes, committing them prepares them for the push to the remote branch and creates a snapshot of the repository at that moment in time.
Push
After committing the edits, push the changes to GitHub. If the following produces an error, see below the code snippet for common solutions. The structure of this command is
git push <remote> <branch>
.Upstream error:
git push --set-upstream origin branch_name
orgit push -u origin branch_name
Merge
At this time, GitHub does not natively support submissions for merge requests via the command line.
You can send a merge request using the GitHub GUI.
From the left menu panel in GitHub (when viewing the repository), select
Merge Request
then the greenNew merge request
button.Select your branch on the "Source Branch" side.
Target branch is master.
Click
compare branches
.
On the next screen the only thing needed is:
Assign to: < Project Owner, etc. >
Click
Submit merge request
.
Related Tutorials
Last updated