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:

KQL OPER

  Understanding KQL Operators Let's take a look at Kusto Query Language (KQL) operators and how they can help build powerful queries. Un...