[go: up one dir, main page]

× GitFichas is now open-source and undergoing some construction. Thanks for the patience. You can learn more about the changes happening here.

What is a

merge request

merge request
#059 What is a merge request

Making a

commit

commit
#058 git commit

Undoing the

commit

most recent

commit
#057 git reset HEAD~

What is an

issue

issue
#056 What is an issue

Checking changes in

staging

staging
#055 git diff --staged

What is a

commit

commit
#054 What is a commit

Textually searching

commit

messages

commit
#053 git log --all --grep='word'

Making an empty

commit

commit
#051 git commit --allow-empty

What is a

conflict

it happens when two or more changes are made to the
same chunk of a file and git doesn't know
how to apply the most recent change
conflicts are indicated by the markers >>> === <<<
#030 What is a conflict

Using

rebase

to fix branch source

rebase
#028 git rebase --onto source previous branch

How to create a

Remote

command to create
a new remote
remote path
git
remote
add
name
url
command to manage
remotes
remote name, for
example origin
#021 git remote add name url

What is the

Head

Head
#013 What is the Head

Checking

the changes of each file

Checking
#012 git diff

switching

Branches

Branches
#011 git checkout name

what is a

pull request

It is the process of submitting changes for
review on GitHub
On GitLab, this process is called merge
request
#010 what is a pull request

creating a new

Branch

Branch
#009 git branch name

interactively

Adding

files to commit

Adding
#008 git add -p

Checking the commits

history

shows an interactive list of commits with
the hash and message of each commit
git
log
#007 git log

Checking

the list of altered files

Checking
#006 git status

what is the

staging

area

it's the commit setup area
where we see the collection of altered or created files
that will be part of the next commit
#005 what is the staging area

Checking

the details of a commit

Checking
#004 git show 09c6d68

How to make a

Commit

Commit
#003 git commit -m 'changes'

Adding

files to a commit

Adding
#002 git add file.txt

Starting

a project

Starting
#001 git init