Difference between revisions of "Make Local Changes and Update remote Repositories"
Jump to navigation
Jump to search
↑ http://man7.org/linux/man-pages/man1/git-add.1.html
↑ http://man7.org/linux/man-pages/man1/git-remote.1.html
↑ https://git-scm.com/docs/git-push
(Created page with "Add local changes. # Stage files. #* Add files to the folder or modify existing files. #* Add new and modified files to the git staging area using the command:<br><code>git...") |
|||
(11 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | |||
+ | Steps: <code>[[git add]]</code> -> <code>[[git commit]]</code> -> <code>[[git push]]</code> | ||
+ | |||
+ | == Example == | ||
Add local changes. | Add local changes. | ||
− | + | * Stage/add files: | |
− | + | ** Add files to the folder or modify existing files. | |
− | + | ** Add new and modified files to the git staging area using the command:<br><code>[[git add]] .</code><ref>http://man7.org/linux/man-pages/man1/git-add.1.html</ref> or <code>git add some_modified_file.txt</code> or <code>git add -A</code> | |
− | + | ||
− | + | * Commit changes" | |
− | + | ** Commit changes into the local repository using the command:<br><code>[[git commit]] -m "<some message>"</code> | |
− | + | ||
− | + | * Connect to a remote repository. | |
− | + | ** Connect to a remote repository using the command:<br><code>[[git remote add]] <name> <url></code><ref>http://man7.org/linux/man-pages/man1/git-remote.1.html</ref> | |
+ | |||
+ | * Push changes to a remote repository. | ||
+ | ** Push changes from your local repository to a remote repository using the command:<br><code>[[git push]]</code><ref>https://git-scm.com/docs/git-push</ref> or <code>[[git push origin master]]</code> | ||
+ | == Activities == | ||
+ | * [[How to commit to remote branch]] | ||
== See also == | == See also == |
Latest revision as of 08:41, 20 June 2023
Steps: git add
-> git commit
-> git push
Example[edit]
Add local changes.
- Stage/add files:
- Commit changes"
- Commit changes into the local repository using the command:
git commit -m "<some message>"
- Commit changes into the local repository using the command:
- Connect to a remote repository.
- Connect to a remote repository using the command:
git remote add <name> <url>
[2]
- Connect to a remote repository using the command:
- Push changes to a remote repository.
- Push changes from your local repository to a remote repository using the command:
git push
[3] orgit push origin master
- Push changes from your local repository to a remote repository using the command:
Activities[edit]
See also[edit]
git
: [config | init | status ]
,git add
,git rm
,git commit
,git push, git pull
,.gitconfig
,.gitignore
,git
(clone
,fetch
,pull
),git tag
,git log
,git blame
, Merge Request, LFS,git branch
,git apply
,git rebase
,git diff
,git diff-tree
,git config --global
,remote | submodule | request-pull
,GIT_TRACE, GIT_CURL_VERBOSE
,clean
,main
,git show-ref
,git reset
,git prune
,git ls-remote origin
,git checkout
,git switch
,pathspec
,git credential-osxkeychain
,git version
,pre-commit
,git --help
, GitBook,refs/
Advertising: