8000 GitHub - so-lovely/git_cmd
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

so-lovely/git_cmd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

At first

git config --global user.name "[user.name]"
git config --global user.email "[user.email]"

At non existing repository

git init:[Optional]
git add -A
git commit -m "[message]"
git push
--------------------------------------------
echo "# test_repo" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/so-lovely/test_repo.git
git push -u origin main

At existing repository

git remote add origin [address]
git branch -M main
git push -u origin main

Make sure you should have dir or file

LICENSE
README.md
experiment[dir]
experiment.ipynb
.gitignore
src[dir]
pyproject.toml
requirements.txt
Outline[dir]

Make sure you should exec

virtualenv [folder_name]
source bin/activate

git clone makes new directory

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0