sudo yum install gitsetelah muncul sukses, maka command 'git' sudah bisa digunakan untuk checkout.
git clone https://github.com/GreviaLabs/git.grevia.com.git /Jika sudah berhasil maka akan ada tulisan done. Untuk melakukan update, gunakan command pull seperti berikut.
git pull origin masterHelp:
git config credential.helper store
git pullVoila. Jika anda ingin melakukan reset credentials maka ulangi lagi tahap 1.
git config --global user.name "John Smith" git config --global user.email john@example.com
git config --global alias.st status git config --global alias.co checkout git config --global alias.br branch git config --global alias.up rebase git config --global alias.ci commit
$ cd D: $ cd wamp/www
$ git init $ git remote add origin https://repository.klgsys.com/rusdi/cerberus.git
$ git clone https://repository.klgsys.com/rusdi/cerberus.git
$ git add .
$ git commit -m "Initial commit"
$ git push -u origin master
git status #format: git checkout origin/master -- path/to/file git checkout origin/master -- path/to/file
git status
git checkout origin/master -- path/to/file
git checkout -b modul_api # git checkout -b# Create a new branch and check it out git add . #add new file global git commit -m "commit ke cabang" #commit to branch git push#branch BARU akan bisa terbuat dan terlihat di repository git, jika anda sudah melakukan push
# pastikan anda sedang di repo master git checkout master # pastikan anda usdah update git pull # melakukan merge dari master dengan branch 'module_member' secara local # tanpa melakukan commit dan fast forward # format : git merge origin/NAMABRANCH --no-commit --no-ff git merge origin/module_member --no-commit --no-ff # jika tidak ada masalah maka bisa di commit git
# jika anda sedang mengedit script namun ingin update gunakan git stash # command ini akan men-save semua local changes anda ke sebuah tempat sementara git stash save # lakukan update git pull #jika sudah yakin tidak ada masalah, kembalikan ke latest local changes anda git stash pop
git config --get remote.origin.urluntuk memunculkan full output
git remote show origin
git reset filesaya.txt # git reset filename
# format: git checkout <branch_name>git checkout master # pindah ke branch master git checkout modul_api #pindah ke branch modul_api
git checkout feature git rebase -i masterOutputnya adalah
pick 33d5b7a Message for commit #1 pick 9480b3d Message for commit #2 pick 5c67e61 Message for commit #3Listing diatas digunakan
pick 33d5b7a Message for commit #1fixup 9480b3d Message for commit #2 pick 5c67e61 Message for commit #3Source
# To untrack a single file that has already been added/initialized to your repository, i.e., # stop tracking the file but not delete it from your system use: # To untrack every file that is now in your .gitignore: # First commit any outstanding code changes, and then, run this command: # format: git rm --cached filenamegit rm -r --cached .# This removes any changed files from the index(staging area), then just run:git add .# Commit it:git commit -m ".gitignore is now working"# To undogit rm --cached filename, use git add filename.# Make sure to commit all your important changes before running git add . Otherwise, you will lose any changes to other files.
# resolve conflict using ours git checkout --ours PATH/FILE # resolve conflict using theirs git checkout --theirs PATH/FILE
adalah kumpulan tutorial server dan pemograman tentang seputar Linux & PHP
CodeIgniter