Friday, June 26, 2020

The 6 Git Commands Data Scientist Should Know

An introduction to using Git for machine learning projects

Jesse Freeman
Jun 26 · 7 min read
Typing git into the command line will return a list of commands you can use.

1. Init

git init

2. Remote Add

https://github.com/jessefreeman/GitExample.git
git remote add origin <PROJECT_URL>

3. Add

git add .

4. Status

git status

5. Commit

git commit -m "Add a message so you know what you did."
git commit -m "Finished making changes to #1."

6. Push

git push --all

Rinse and Repeat

No comments:

Must Watch YouTube Videos for Databricks Platform Administrators

  While written word is clearly the medium of choice for this platform, sometimes a picture or a video can be worth 1,000 words. Below are  ...