<div dir="ltr">I have a query about how one can adapt familiarity of  RCS usage to Git usage. My impression is that version numbers<div>like RCS can be simulated using "branches" in git? I haven't used Git much beyond pulling interesting source code.</div><div><br></div><div>FF</div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><br><br><br>--------------------------------------------------------------<br> Roger Federer Fanatic Extraordinaire :-)</div></div>
<br><div class="gmail_quote">On Wed, Feb 14, 2018 at 11:06 AM, Adam Glauser <span dir="ltr"><<a href="mailto:adamglauser@gmail.com" target="_blank">adamglauser@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Thanks for sharing this John. For what it's worth, I've been using Git for years now, and I strongly prefer the CLI over any GUI I've used. That being said, I do use GUI tools for certain operations. For example, see `git mergetool`. My preferred tool is KDiff3 (which is available on the other OS as well).<div><br></div><div>My approach to your problem is to use environment variables. An advantage of this approach is that you can then refer to those paths in a variety of use cases.</div><div><br></div><div># ~/.profile</div><div>export P_A_DIR=<span style="color:rgb(33,33,33)">/c/Users/user/<wbr>projects/project</span><span style="color:rgb(33,33,33)">A</span></div><div>export P_B_DIR=<span style="color:rgb(33,33,33)">/c/Users/user/<wbr>projects/projectB</span></div><div><br></div><div>You can then do things like:</div><div>$ cd $P_A_DIR<span style="color:rgb(33,33,33)"><br></span></div><div>$ diff $P_A_DIR/path/to/file $P_B_CODE/path/to/file</div><div><br></div><div>In particular, I find this handy for referring to locations on remote boxes, where I may not be able to use aliases or remote env. vars. easily.</div><div>$ scp $P_A_DIR/path/to/file user@server:$P_A_TEST/path/to/<wbr>file</div><div>   or</div><div>$ scp $P_A_DIR/path/to/file user@server:$P_A_RELEASE/path/<wbr>to/file<br></div><div><br></div><div>Hope this helps,</div><div>Adam</div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Feb 14, 2018 at 10:36 AM John Johnson <<a href="mailto:jvj@golden.net" target="_blank">jvj@golden.net</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Update<br>
A while ago I was informed about the use of alias command.<br>
My Bad: I had forgotten about the alias command, as I used it back when<br>
was UNIX sysadm, many eons ago.<br>
<br>
While my application is not in Linux what I have shown below shows how I<br>
am using the alias command with the git command window.<br>
The same can apply to Linux.<br>
<br>
In the other OS, I have placed .bashrc (shown below) in the git home<br>
directory /c/Users/user/.<br>
I have a number of projects, each with their own development directory<br>
and git repository.<br>
In the git command window, I use the alias commands shown below to<br>
define shortcuts that will put me in the development directory for the<br>
current project.<br>
<br>
# .bashrc<br>
# created 20180211<br>
alias cdprojectA="cd /c/Users/user/projects/<wbr>projectA"<br>
alias cdprojectB="cd /c/Users/user/projects/<wbr>projectB"<br>
alias cdprojectC="cd /c/Users/user/projects/<wbr>projectC"<br>
# done<br>
<br>
Next: Study & use the git control files: .gitignore and .ignore.<br>
<br>
And yes! At this time, I prefer to use git from the command line window.<br>
Using the git gui will come later.<br>
<br>
JohnJ<br>
<br>
<br>
______________________________<wbr>_________________<br>
kwlug-disc mailing list<br>
<a href="mailto:kwlug-disc@kwlug.org" target="_blank">kwlug-disc@kwlug.org</a><br>
<a href="http://kwlug.org/mailman/listinfo/kwlug-disc_kwlug.org" rel="noreferrer" target="_blank">http://kwlug.org/mailman/<wbr>listinfo/kwlug-disc_kwlug.org</a><br>
</blockquote></div>
<br>______________________________<wbr>_________________<br>
kwlug-disc mailing list<br>
<a href="mailto:kwlug-disc@kwlug.org">kwlug-disc@kwlug.org</a><br>
<a href="http://kwlug.org/mailman/listinfo/kwlug-disc_kwlug.org" rel="noreferrer" target="_blank">http://kwlug.org/mailman/<wbr>listinfo/kwlug-disc_kwlug.org</a><br>
<br></blockquote></div><br></div>