Questions tagged as 'git'

1
answer

Workflow to revert changes from branch dev to master

Branch dev is automatically mergeado master ; this one for your Instead, you have an automatic deploy application. Branch dev has some changes ahead of branch master and will be discarded. The feature bra...
asked by 10.06.2016 / 22:26
1
answer

Deploy with GIT x Deploy with Gulp

I still can not figure out what the best deploy of a site is. I explain the way I'm doing: GIT I started a local repository I hosted my repository on some service like GitHub / Bitbucket I joined the server via SSH and clone the dir...
asked by 09.07.2015 / 13:34
1
answer

How to use git to organize my development, approval and production environment?

We are adopting the use of a homologation server here in our company, but we still do not know how to organize the development flow from this paradigm, since currently each developer when it wants to consolidate the implemented modifications per...
asked by 26.11.2014 / 17:43
2
answers

How to push on remote branches?

I have a local branch called ResultadoAPI , the remote is located in origin / feature / ResultAPI I tried pushing in different ways but this remote is still outdated. daniela.morais@tusk:~/Development/git/oknok-clicktag$ git push ori...
asked by 06.05.2015 / 16:27
1
answer

Configure user.name

When I write the command git config --global user.name the error occurs:    Could not lock config file z: //.gitconfig No such file or directory. The installation was done by default in C: but when I set the directory ( l...
asked by 15.04.2014 / 14:27
1
answer

problem configuring a GIT repository with bare

I have a repository of a server that gave problem and it was not possible to clone its repositories to the new server's GIT, so I copied the whole application development environment through the pendrive, it is as follows. after installing GIT w...
asked by 25.11.2015 / 16:49
5
answers

Add all the latest commit changes to git

Whenever I make several changes to files in Git, I quit by adding the changes one-by-one through git add . It is a rather annoying process, I wonder if you have a command to add all the changes "not staged" at one time.     
asked by 26.07.2016 / 18:51
1
answer

Why use "git branch --unset-upstream"?

I created a project and left it hosted remotely. I have the following code: So far so good. Now I do a branch called test, and I already do add / commit / push. And now what I wanted to ask is: When I go back to the branch master, t...
asked by 09.12.2016 / 19:33
6
answers

How to create a Git server on the internal network?

How can I create a local Git server? I would not want to be dependent on the internet.     
asked by 31.01.2014 / 14:49
1
answer

How to remove a file from the staging area in git?

I accidentally added all the files in the git staging area with the "git add." command, how do I remove a file from the staging area so it will not be commited?     
asked by 11.02.2014 / 02:02