590 B
590 B
DeaDvey's domain
Home page Blogs Resources
Git:
Helpful resources:
- Git docs
man git
, Git manual entry.
Crucial git commands:
git add .
, Add's the contents of curreent directory to indexgit commit -m 'update'
, Record changes to repositorygit push
, Updates remote refs with local repo
URL:
-
Change a git repositories url:
git remote set-url origin new.git.url/here
-
Return the url of the current git repository:
git config --get remote.origin.url