Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gjbianco/ace-git
https://github.com/gjbianco/ace-git
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/gjbianco/ace-git
- Owner: gjbianco
- Created: 2018-05-31T18:13:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-31T19:27:11.000Z (over 6 years ago)
- Last Synced: 2024-12-09T12:57:33.696Z (about 1 month ago)
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ace-git
In these guides, you will learn the basics of using git on the command line, as well as using GitLab to contribute code back to a team.
## Installation
### Windows
Download from git-scm.com
Make sure to include Git Bash as part of the installation (should be selected by default).
### Linux
Install using your package manager. e.g.
`sudo yum install git` for RHEL and Fedora
`sudo apt-get install git` for Debian and Ubuntu### macOS
Install using [Homebrew](https://brew.sh/) (preferred), MacPorts, or from git-scm.com
Note: DO NOT use the built-in version from Apple. It is likely very out of date.
## Set up your .gitconfig
Set up your user information with the following commands:
1. `git config --global user.name "Your Name"`
2. `git config --global user.email "[email protected]"`These two commands set the "name" and "email" properties in your ~/.gitconfig. You can check/edit this information there.