The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
34 views

Can't get vim-ruby to work correctly on Git Bash

I installed vim-ruby on Windows by downloading and running the installation script. I have Git-bash and its own packaged vim. My problem is that I believe indentation and syntax isn't correct. First ...
0
votes
2answers
21 views

Change Credentials for Push in Git

Just getting started with Git. I have an existing personal account on Bitbucket, and I have created a team account as well using my work email address. I created a repository, got it working, cloned ...
1
vote
1answer
27 views

Error using curl from git-bash to install chef

I am trying to use git-bash in win 7 to use the chef omnibus installer. I tried the following: $ curl -L https://opscode.com/chef/install.sh | bash % Total % Received % Xferd Average Speed ...
1
vote
0answers
10 views

Windows & Git Bash: Bash PATH to read Windows %PATH% system variable [migrated]

I've recently added a directory to the Windows PATH manually by going into Control Panel -> System -> Advanced system settings -> Environment Variables -> User variables -> PATH. (Windows 7, 64-bit.) ...
0
votes
1answer
35 views

RegExp: Last occurence of pattern that occurs before another pattern

I want to take a text pattern that occurs the last before another text pattern. For example I have this text: code 4ab6-7b5 Another lorem ipsum Random commentary. code f6ee-304 Lorem ipsum text ...
0
votes
1answer
23 views

Why does the git branch name changes when there are conflicts?

I am a newbie using Tortoise Git ONLY to commit/revert and GitBASH to pull and push. (I face some ssh issues to commit using GitBASH and my question is not about it). I've two parts to my question. I ...
0
votes
1answer
24 views

Set SSH Identities In Bashrc

I have a .bashrc file to start my ssh agent (taken from here). Whenever I start my machine I keep having to add my identities to it (using ssh-add ~/.ssh my_private key). Not knowing bash scripting ...
1
vote
3answers
30 views

How do I prevent git from thinking new directories are part of the working tree?

My home directory is a git repository. But to allow me to freely create/delete/test code without cluttering up git status, my .gitignore has an explicit ignore all: [svenglar@my_box ~]$ cat ...
0
votes
4answers
38 views

Create an alias for several git commands [duplicate]

I generally use these commands on branch 'work' with git git commit -a -m "blah! blah!" git checkout master git merge work git checkout work I have heard about git aliases. Is it possible to ...
0
votes
1answer
19 views

git format-patch not working from bash script

I have a list of commits available in commits.txt file and i need to prepare a list of patches of these commits so as to apply them later to my branch. I have written below bash script to do so :- ...
-3
votes
1answer
45 views

I accidently found that I can use vim in git-bash of windows, but how and where to config the vim to better use?

Also, if it is possible to use visual studio command prompt in the git-bash?
0
votes
1answer
91 views

How can I install vimdiff on Windows after installing git bash?

I usually use vimdiff when I want to see diff between two points in git. However, I can't find vimdiff in 'git bash' environment on Windows. Therefore, If anybody know how to install or use vimdiff in ...
0
votes
2answers
22 views

How do you edit a branch in Git?

Coming from a SVN world, wrapping my head around Git has been a little weird, and I'm having trouble letting go of some of the practices ingrained in me from using Subversion for so long. So, for ...
0
votes
2answers
39 views

Use grep to find strings at the beggining of a line or after a delimiter in Git Bash for Windows

I have such file: blue|1|red|2 green|3|blue|4 darkblue|0|yellow|3 I want to use grep to find anything containg blue| at the beginning of line or |blue| anywhere, but not any darkblue| or |darkblue| ...
3
votes
1answer
1k views

Unable to Connect to GitHub.com For Cloning

I am trying to clone the angular-phonecat git repository https://github.com/angular/angular-phonecat , but i am getting the following message when i enter the command in my gitbash Message I got when ...
0
votes
1answer
115 views

IPython Notebook %%bash Magic Error

I'm trying to follow a version control tutorial in an IPython Notebook by Fernando Perez, a static version of which can be found here. He uses the %%bash magic extensively, but When I use it I get ...
1
vote
1answer
25 views

Gitbash closes immediately, can't sign in to Github

I'm just getting started with GitHub and I'm trying to follow these instructions: https://help.github.com/articles/set-up-git I've downloaded GitBash but when I click on it, the window pops up for a ...
0
votes
2answers
22 views

not able to see the current branch that I am currently working

I am using git and this is how my bash_profile looks like. "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function if [ -f ...
1
vote
1answer
114 views

Cannot push to git repository on bitbucket

I made a new repository and I'm running into a strange error. I've used git before on bitbucket but I just reformatted and now I can't seem to get git to work. After doing a commit, I had to add my ...
1
vote
1answer
62 views

Git Bash shell can't find java.exe

Trying to execute java.exe and getting the lovely error>> sh.exe": java.exe: command not found The command works in a normal command shell. I've checked the path of both and they are the almost the ...
0
votes
0answers
54 views

GitExtensions show only master branch in “branches” drop down

I am using GitExtensions as a UI sidekick of Git command line and I am facing a problem with it. Everything is fine with it except one thing: the drop down where it is supposed to show all the ...
1
vote
1answer
96 views

Why are files created in git bash not visible in Windows explorer?

So I just moved from Ubuntu to Windows (read forced to move, thanks to compatibility issues) and am using Git Bash to pull in my files. I've noticed something extremely strange. Git Bash is installed ...
1
vote
1answer
43 views

How to detach “git gui” started in “Git bash” on Windows?

For example, I start "git bash"; I navitage to certian directory; I start git gui&; I close the console window or press Ctrl+C. Git-gui's window disappears. Even if I used git gui&disown. ...
1
vote
0answers
132 views

Git Clone is too slow

This is my first time to construct the git server. When I use TortoiseGit-1.8.1.0-32bit to handle the operation, everything is fine! But if i use the git clone command or git bash, the git clone ...
0
votes
2answers
78 views

Load php.ini to terminal

I'm using Git Bash terminal, php 5.4.10, OpenServer (wamp), windows 7 I am trying to load some library by Composer, but I can not because it says: Kinda weird because curl is working at php ...
1
vote
1answer
140 views

Multi module maven project release with git on Windows

I configured maven2 release plugin in pom.xml for a multi module maven project. The project is located in a single git repo. Releasing process does not work on Windows. Under git bash I always get ...
2
votes
2answers
98 views

git diff filtered by file name

I would like the results of git diff to be filtered by the file name. In particular, I want a diff for all of the files named "AssemblyInfo.cs", but located anywhere within the git repository. I am ...
4
votes
1answer
111 views

Getting VS2010 / Resharper to “git move” during refactorings

Is there an extension to Visual Studio 2010 / Resharper, that will cause files moved or renamed during a refactoring to be git moved appropriately? Right now every time I move a file I have to ...
0
votes
2answers
65 views

How do I test if a string starts with another in bash?

Very similar but not duplicate : http://stackoverflow.com/a/2172367/57883 I'm in Git Bash 3.1 (at least that's what comes up in the prompt when I type bash inside git bash. and $ test [["DEV-0" == ...
13
votes
2answers
990 views

Can't start foreman in Heroku Tutorial using Python

I have been attempting to complete this tutorial, but have run into a problem with the foreman start line. I am using a windows 7, 64 bit machine and am attempting to do this in the git bash terminal ...
0
votes
2answers
636 views

-bash: __git_ps1: command not found

I tried to install Ruby 2.0. My command line urped and now looks like the following: -bash: __git_ps1: command not found [11:58:28][whatever@whatever ~]$ I have not a clue how to get rid of the ...
4
votes
4answers
170 views

How to use mingw32 when installing a distutils package?

I've come across a github project which I am trying to install and run it but I've run into some problems. I've also put this up as an issue. The entire pip log is available there. The problem ...
0
votes
0answers
70 views

git-shell merging to a different path

I have one problem with my git remote repository. I have create a git user for a git-shell access. When someone join in the shell the home path is /home/git/, and this is ok. The problem is: my ...
0
votes
0answers
40 views

Is mingw32's bin directory the same as git-bash's bin directory?

I am trying to follow the directions from error: Unable to find vcvarsall.bat. I found the solution, as I had the exact same problem with installing amara. I had mingw32 installed but distutils ...
2
votes
2answers
113 views

Starting with Git: How can I set the directory to work in?

Very basic beginner question on Git, from someone with very little command line experience. I have Git Bash open. I have been following this very useful guide, which I have understood up to a point. ...
3
votes
1answer
67 views

Why is “git grep” behaving erratic on my Windows PC?

I'm using Github and Git bash on my Windows PC (running XP). On Ubuuntu I'm happyily using git grep to plough through my code, but every time I call something like: git grep "some text in my repo" ...
1
vote
4answers
385 views

Invoking notepad++ from Git Bash

Hi guys i'm using msysgit in Window 7. How do i invoke notepad++ from Git Bash like we do it with our default notepad. Like for example name@usename notepad textfile.txt Instead i want the file to ...
0
votes
1answer
124 views

Fixing mac/windows new lines with git pre-commit hook?

In our office we working in a team of about 10 developers. Most of them have a Mac machines. Recently I've realise when I'm checking differences of my work (after changing only one line of code) ...
0
votes
2answers
60 views

How can I pre-define commands for when I open a new Git Bash command prompt

I have noticed that on my various (Windows 7) machines running Git that when I open a new Git Bash command prompt I can often access previous commands by pressing the up arrow. These commands differ ...
0
votes
2answers
221 views

Error: Cannot Spawn C:\Path To\TortoiseGit\Bin: No such file or directory

Trying to do a fetch from origin: git remote update Get the error Error: Cannot Spawn C:\Path To\TortoiseGit\Bin: No such file or directory fatal: unable to fork Error: Could not fetch origin ...
0
votes
3answers
171 views

Remote GitStack - Create Branch

I just can't understand why such an easy looking stuff is not written anywhere... So I'm struggling to create a branch on a remote GitStack repository. I've looked over dozens of web pages and found ...
1
vote
1answer
74 views

git errors sharing files among Windows and Mac

I recently had a problem wit git couldn't merge because of HEAD and these files. (Netbeans said) So I tried doing it with Git Bash and it gave me some errors about .DS_Store. So I removed those files ...
1
vote
1answer
105 views

how do I tell cake where to look for coffee?

Setting up the express coffee app that twilson63 built. It seems that cake can't find coffee, but they both are ok with which. Is there something else I need to do here? Here's my steps: ...
1
vote
1answer
212 views

Git bash `cp` – Exclude “protected operating system files” (and what are those?)

If I try to copy my home directory using cp in Git bash (on Windows 7), more than I want will be copied. The following is an example to demonstrate the issue. In reality I want to copy recursively, ...
0
votes
1answer
2k views

Cygwin or Git Bash command window?

I'm new to Git. I downloaded Git and installed on my Windows. I saw Git provides a Git Bash command window. I also have Cygwin installed on my machine. Both Git Bash and Cygwin provide Git command ...
2
votes
2answers
108 views

Why did git (bash) insert a bunch of nonsense into my new files?

So. I added some new files to a git repository that I hadn't touched in a couple months. For some reason, after merging, pulling and pushing my changes to github, I noticed that all the new files had ...
1
vote
1answer
217 views

what's the least resistance path to debugging mocha tests?

I'm building a mocha test in coffeescript. Right at the top of the test I have: require "../assets/js/theObject.coffee" debugger ss = new TheObject() I'd like to stop on that debugger line because ...
0
votes
0answers
30 views

Can't use the command I want on GitHub

I have uploaded a function to my GitHub account and this is the first time I do that. I wonder how I can use GitHub's command line. I want to delete all the history but not the original repositori ...
1
vote
1answer
231 views

git bash shell not find /etc

After installing MSysGit on my new Win7 laptop, I moved my users directory (C:\Users) to my D: disk and created a hardlink from C:\Users to D:\Users. This seems to work for most programs, however the ...
1
vote
1answer
52 views

How can I send the character q to GIT from batch file

I need to show the last commit of my repository from a script for what I'm using: git log -1 --pretty=oneline And here come the questions: One line prints the entire commit hash, due to want to ...

1 2 3