https://github.com/phomint/udacity-terminal-config
Bash config to better visualize Git information
https://github.com/phomint/udacity-terminal-config
bash git
Last synced: about 2 months ago
JSON representation
Bash config to better visualize Git information
- Host: GitHub
- URL: https://github.com/phomint/udacity-terminal-config
- Owner: Phomint
- Created: 2019-11-13T01:54:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-07T01:03:38.000Z (over 6 years ago)
- Last Synced: 2025-03-27T14:55:48.083Z (over 1 year ago)
- Topics: bash, git
- Language: Shell
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Configuration Steps
To configure the terminal, we'll perform the following steps:
- clone this repository
- move the directory `udacity-terminal-config` to your home directory and name it `.udacity-terminal-config` (there's a dot at the front, now!)
- move the `bash_profile` file to your home directory and name it `.bash_profile` (there's a dot at the front, now!)
if you already have a `.bash_profile` file in your home directory, transfer the content from the downloaded `bash_profile` to your existing `.bash_profile`
### First Time Git Configuration
Before you can start using Git, you need to configure it. Run each of the following lines on the command line to make sure everything is set up.
```sh
# sets up Git with your name
git config --global user.name ""
# sets up Git with your email
git config --global user.email ""
# makes sure that Git output is colored
git config --global color.ui auto
# displays the original state in a conflict
git config --global merge.conflictstyle diff3
git config --list
```
### Atom Editor Setup
```sh
git config --global core.editor "atom --wait"
```