|
I'm using a windows PC and editing files checked out from SVN, which has files checked in using DOS.
I use cygwin and when I either create a new file or patch a file using cygwin binaries the file format is unix. Really I need to always use DOS format...
Started by Ben on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can make SVN do and the other ones will have the same files with CRLF):
svn propset svn:eol-style native put-your.
You can choose the UNIX or DOS file format during the installation of cygwin.
|
|
Hi,
I have been passed a csv file which is just a lod of numbers with commas between then
e.g.
1,2,3,4,5,6
etc.
There are no crlf's after the commas so I can't import this into excel or a database to further process.
Does anyone know how I can process...
Started by Steve on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Transform Backslashes"
You can use the linux or cygwin utility tr
cat FILENAME | tr , '\n'
YOu could.
|
|
On Sat, 26 Jan 2008 08:24:35 -0600, paul.hermeneutic@gmail.com wrote:
Where is the CRLF setting from Cygwin setup.exe stored?
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html...
Started by paul.hermeneutic@gmail.com on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
Is the CRLF setting from Cygwin setup.exe stored?
$ mount -m
$ man mount
- --
Don't work too hard-----
Version: GnuPG v1.4.5 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment.
|
Ask your Facebook Friends
|
On Sat, 26 Jan 2008 09:37:22 -0600, paul.hermeneutic@gmail.com wrote:
| Where is the CRLF setting from Cygwin setup.exe stored?
$ mount -m
$ man mount
Many thanks, Blake. And from where does mount retrieve the setting?
HKEY_LOCAL_MACHINE...
Started by paul.hermeneutic@gmail.com on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
; | Where is the CRLF setting from Cygwin setup.exe stored?
|>
|> $ mount -m
|> $ man mount does mount retrieve the setting?
| HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
Just (Cygwin)
Comment: Public ....
|
|
I plan to migrate my projects over to git, and I'm currently wondering which is the best and / or most stable option under windows.
From what I gather I basically have 2.5 options:
MSYSgit git under Cygwin (aka 2.5) MSYSgit from a Cygwin prompt (given...
Started by Joce on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I've dabbled with using both the MSYS and Cygwin versions of git, and to be really honest, I didn't of git has some GUI functionality that isn't available in the cygwin version unless you want version is more popular, although that may be....
|
|
After migrating to Windows, I'm using msysgit with its included bash shell, and that's working well for me. But I have issues: our ant build process won't run in that shell, I'd like to use Cygwin's xterms instead of the Windows command window, since ...
Started by skiphoppy on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Will Cygwin's git check out as \n.
Core.autocrlf=false
That way, you do not have ant unwanted conflict.
The simplest approach would be to set any git (msysGit or Cygwin git) to ignore crlf styles.
|
|
So I access my SVN repo using the good ol' putty session name trick. I can use TortoiseSVN and Subclipse just fine, the URL format looks like:
svn+ssh://@/data/svn/my-code
Example: svn+ssh://codecraig@dev-server/data/svn/my-code
So, I've checked out "...
Started by codecraig on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But you must never ever share a working copy that you use ... .
If you only use the cygwin client, that's fine.
Those are not compatible.
Please use the Windows svn client, not the one in cygwin if you also use other svn clients.
Scenarios.
|
|
I'm trying to use cygwin as a build environment under Windows. I have some dependencies on 3rd party packages, for example, GTK+.
Normally when I build under Linux, in my Makefile I can add a call to pkg-config as an argument to gcc, so it comes out like...
Started by smo on
, 6 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is your pkg-config a cygwin appAre you sure that you're using the make provided by Cygwin? Use
which make make --version
to check guess would be that cygwin'....
At the end of the "t" output may be an artifact of CRLF translation.
|
|
On Sat, 28 Mar 2009 18:21:09 +1000, Ian Clatworthy <ian.clatworthy@internode.on.net
I want to land EOL conversion into bzr.dev and I have
the code ready to go. I'm currently supporting values
named "unix" and "windows", i.e. what conventions to
...
Started by Ian Clatworthy on
, 13 posts
by 10 people.
Answer Snippets (Read the full thread at omgili):
A
file in CRLF on Windows (MSVC project files circa 7.1/2003), and there
are ones you have to have in LF even on Windows (cygwin bash scripts
that use '\' to wrap lines fail if that line has a '\r\n
get local CRLF or LF on checkout....
|
|
I'm running WinXP, Eclipse 3.2 with EPIC and Cygwin for my Perl interpreter and I'm get an unexpected result.
FYI... when I run it on my Ubuntu distro (vmware, same pc) I get the expected results. What gives?
CODE: use warnings ; use strict ; my $test...
Started by Beauchamp on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I couldn't replicate your problem with just Perl/Cygwin or Perl/Windows but this command gives similar results (in Cygwin):
echo 'test....
Eclipse, Cygwin and Windows, disagreeing on what the end-of-line character sequence should be.
|