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:

How We Fix Misspelled Multilingual Queries with LLMs

  The rise of Large Language Models (LLMs) has generated significant excitement in the tech community. However, the real value lies in turni...