Re: [git-users] Is it possible to apply git versioning/diffing algorithm to multiple files which are the same file ?

2022-03-05 Thread skybuck2000
On Friday, March 4, 2022 at 9:49:49 AM UTC+1 Konstantin Khomoutov wrote: > On Thu, Mar 03, 2022 at 11:12:08PM -0800, skybuck2000 wrote: > > >> There's no such support built into Git (because this simply goes > >> perpendicular to its data model, where multiple

Re: [git-users] Is it possible to apply git versioning/diffing algorithm to multiple files which are the same file ?

2022-03-04 Thread skybuck2000
> > > What I would like also is for these differences to be visible on > > github/commits. > > This is not possible due to the reasons I have presented above. > > I am going to assume you did not read the rest of my post or it wasn't clear. So I will repeat the "minimum" idea I had to make thi

Re: [git-users] Is it possible to apply git versioning/diffing algorithm to multiple files which are the same file ?

2022-03-03 Thread skybuck2000
One possibility which comes to mind is to go "back in time" and create some more commits/branches or whatever. And spread these different versions over multiple commits. So one commit per version. Very maybe git will then recognize these different versions as being the same file and then it ca

Re: [git-users] Is it possible to apply git versioning/diffing algorithm to multiple files which are the same file ?

2022-03-03 Thread skybuck2000
On Friday, March 4, 2022 at 8:23:58 AM UTC+1 skybuck2000 wrote: > This is a fun post/article which describes the "revision" problem: > > https://www.makeuseof.com/tag/file-versioning-git/ > > > Read a bit further into it. What I could do is rename the versioned fil

Re: [git-users] Is it possible to apply git versioning/diffing algorithm to multiple files which are the same file ?

2022-03-03 Thread skybuck2000
This is a fun post/article which describes the "revision" problem: https://www.makeuseof.com/tag/file-versioning-git/ However this problem is only present in "multi-programmer" projects. As long as only one programmer is working on files for some kind of big changes, this is not a problem. Thu

Re: [git-users] Is it possible to apply git versioning/diffing algorithm to multiple files which are the same file ?

2022-03-03 Thread skybuck2000
> > > There's no such support built into Git (because this simply goes > perpendicular > to its data model, where multiple versions are recorded for the same file > (well, actually, they are recorded across the content of all the files in > the > project, but let's not digress)) but you can u

Re: [git-users] Re: GIT failed to checkout the linux kernel on a 6 GB system

2022-03-03 Thread skybuck2000
On Thursday, March 3, 2022 at 3:54:25 PM UTC+1 philip...@iee.email wrote: > > Am I correct in that the work to make mainline Git use size_t where > applicable > is ongoing? > > It's currently a little stalled, because it's been hard to partition the > problem into small chunks that fit every

Re: [git-users] Re: GIT failed to checkout the linux kernel on a 6 GB system

2022-03-03 Thread skybuck2000
On Thursday, March 3, 2022 at 11:42:54 AM UTC+1 Konstantin Khomoutov wrote: > On Wed, Mar 02, 2022 at 06:03:46PM +, Skybuck Flying wrote: > > >> Search for "4GB" in this blog post [1] which discusses the GfW 2.35 > release > >> notes. > >> > >> 1. https://github.blog/2022-01-24-highligh

[git-users] Improved Solution for Ukraine vs Russia

2022-03-03 Thread skybuck2000
Watch these two videos, very important: Professor: https://www.youtube.com/watch?v=JrMiSQAGOS4&t=3107s Skybuck: https://www.youtube.com/watch?v=ply4Se_bVws Greetings, Skybuck Flying! P.S.: I am very sorry for posting this off-topic posting, but if this has even a very slight chance of reac

Re: [git-users] Re: GIT failed to checkout the linux kernel on a 6 GB system

2022-03-02 Thread skybuck2000
Hi, My latest hypothesis what might have happened during that normal git checkout on linux kernel is that there was some kind of memory fragmentation and windows could not return enough memory. Test programs could be written to test this hypothesis but I have no time for this. Bye, Skybuck.

[git-users] Is it possible to apply git versioning/diffing algorithm to multiple files which are the same file ?

2022-03-02 Thread skybuck2000
So suppose I have a repo which is like this: version1.txt version2.txt version3.txt All three files are actually the same file. Is it possible to tell git that version3.txt was based on version2.txt and version2.txt was based on version1.txt and that it should apply it's difference engine onto

[git-users] Re: GIT failed to checkout the linux kernel on a 6 GB system

2022-02-27 Thread skybuck2000
Oh, Oh... So while I was waiting for the linux kernel to checkout I was reading some random stuff about operating systems, or mostly linux boot loaders other os loaders and some people on github involved with linux and then I switch back to the linux checkout and I notice this: new@new-PC MING

[git-users] Re: Official Linux Repository cannot be checked out because of illegal "aux" filenames on Microsoft Windows !

2022-02-27 Thread skybuck2000
Hello, It's me again Skybuck Flying and I am reporting back on my linux kernel checkout experiments on Microsoft Windows 7: I tried two methods, "normal clone" and "shallow clone". During the normal clone I noticed how incredibly slow it was because of "resolving deltas" so I searched with goo

[git-users] Re: GIT failed to checkout the linux kernel on a 6 GB system

2022-02-27 Thread skybuck2000
It doesn't hurt to have a little bit of redundancy, especially for something as "important" as the linux kernel lol: (Copy & Pasting this posting/solution to this thread as well) For now the solution I came up with is to: 1. Trust that this github repository is from "official sources": https:/

[git-users] Re: Official Linux Repository cannot be checked out because of illegal "aux" filenames on Microsoft Windows !

2022-02-27 Thread skybuck2000
For now the solution I came up with is to: 1. Trust that this github repository is from "official sources": https://github.com/torvalds/linux 2. Clone it. 3. Rename these 3 files remotely/on the repository via github and it's file editing feature, which fortunately also allows a rename of file

[git-users] Official Linux Repository cannot be checked out because of illegal "aux" filenames on Microsoft Windows !

2022-02-27 Thread skybuck2000
Hello, On windows 7 and windows 10 it is illegal to start a filename with "aux". Example: new@new-PC MINGW64 /e/SourceCode/LinuxKernel/linux (master) $ git checkout master error: invalid path 'drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c' error: invalid path 'drivers/gpu/drm/nouveau/nvkm/subde

[git-users] Re: GIT failed to checkout the linux kernel on a 6 GB system

2022-02-27 Thread skybuck2000
Hello, I am back in this thead on 28 february 2022. I read that linux will soon move to a new compiler/c language version, from C89 to C11 so I thought I would try again to checkout the linux kernel so that I can see what it looks like. But surprise surprise, it fails again. This time I recor

[git-users] Uploading/Downloading local branch tracking information ?

2022-02-02 Thread skybuck2000
I have a script called: CreateAdvancedRepositoryTabbed.sh which can be downloaded here: https://github.com/SkybuckFlying/PascalCoin It uses git clone --mirror technique to download all the remote branches (which are local to the server/remote) and to re-create them locally. Then the refs are u

[git-users] What is/are the adventage of a git diff driver and/or git chuck headers ?

2022-02-02 Thread skybuck2000
While examining the documentation for git attributes I came across something intrigueing: https://git-scm.com/docs/gitattributes Defining a custom hunk-header The following built in patterns are available: pascal suitable for source code in the Pascal/Delphi language. Defining an external d

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
Well this is the script so far, no idea if my modified lines work, I will test this later, spent enough time on this already: Perhaps setting it per repo might work... or maybe that always goes global no idea. echo Skybuck Flying Here ! echo echo This script create a filter for this git reposit

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
OK Adding: [filter "tabspace2"] clean = expand --tabs=2 --initial smudge = unexpand --tabs=2 --first-only To etc/gitconfig did the trick... it's dogslow though in a virtual machine haha ! Anyway... would be nice if this could be automated/whatever... Gonna put it on the script

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
Hmm seems like git config or something is broken on windows 11... somehow it's not updating the global config of git in: Windows 11 git config looks like: E:\Tools\PortableGit\etc [diff "astextplain"] textconv = astextplain [filter "lfs"] clean = git-lfs clean -- %f smud

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
new@new-PC MINGW64 /e/SourceCode/PascalCoinGit/PascalCoin (PascalCoinMaster) $ git config --list snipped some: filter.lfs.clean=git-lfs clean -- %f filter.lfs.smudge=git-lfs smudge -- %f filter.lfs.process=git-lfs filter-process filter.lfs.required=true filter.tabspace4.clean=expand --tabs=4 --i

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
I delete all files except .git and then do git reset --hard Still spaces in files instead of tabs... weird... Maybe config was vice versa ? hmm checking on windows 7: git config --global filter.tabspace.smudge returns nothing... did this reset it ? I tried to find it in config... nothing..

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
It's still not working on windows 11: It's also a "bare/mirrored" repository... maybe that has something to do with it: git config --global filter.tabspace.smudge 'CoreUtilsUnExpand --tabs=2 --first-only' git config --global filter.tabspace.clean 'CoreUtilsExpand --tabs=2 --initial' Can't bel

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
I tried this: git config --global filter.tabspace.clean 'C:/Tools/GnuWin32/bin/expand.exe --tabs=2 --initial' But that is not working... hmmm not sure why maybe path not allowed... Or maybe path must have other kind of slashes. Well gonna try the rename idea... kinda sucks. Bye, Skybuck.

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
Most likely these two lines/command need to be changed: Hmm I completely forgot to add these two commands to the batch/script file... hmmm... funny stuff... hard to get things right and working sometimes =D git config --global filter.tabspace.smudge 'CoreUtils.UnExpand --tabs=4 --first-only'

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
Unfortunately it's still not working, even after installing CoreUtils. There is always something ! In this case it's Microsoft's own expand utility in windows 11/powershell: E:\SourceCode\PascalCoinAdvanced\RestructuredProject [RemoveExceptionHandling]> expand Microsoft (R) File Expansion Utili

[git-users] Re: Creating attributes file automatically ?

2022-01-31 Thread skybuck2000
The script wasn't perfect yet. It didn't work well in powershell and strangely enough also not well in mintty... One problem was with " " getting outputted as well, and another was with mkdir or something. Multi md and mkdir used to try and make it work better. Also one comment at bottom added

[git-users] Re: Creating attributes file automatically ?

2022-01-30 Thread skybuck2000
> > P.S.: I may also be interested in converting an entire repo to tabs on a > special branchs for increased checkout speeds ?! ;) > On the other hand, I just read and realized, doing that would indeed double the size of the repository and slow down repo creation even more ! Plus github has is

[git-users] Re: Creating attributes file automatically ?

2022-01-30 Thread skybuck2000
Slightly better description to hopefully prevent any confusion. Note it's also important to add an carriage return/line feed at last line of script: echo Skybuck Flying Here ! echo echo This script create a filter for this git repository echo echo 1. To turn two spaces into one tab on checkout ec

[git-users] Re: Creating attributes file automatically ?

2022-01-30 Thread skybuck2000
md command added to make this script work in ms-dos/cmd/windows/powershell too: only tested in cmd.exe should work in powershell too: echo Skybuck Flying Here ! echo echo This script create a filter for this git repository echo echo 1. To turn 2 spaces into tabs on checkout echo 2. To turn 1 tab

[git-users] Re: Creating attributes file automatically ?

2022-01-30 Thread skybuck2000
Big Succes after installing GNU32WinCoreUtils Here is my script so far: CreateSpacesToTabsFilter.sh: echo Skybuck Flying Here ! echo echo This script create a filter for this git repository echo echo 1. To turn 2 spaces into tabs on checkout echo 2. To turn 1 tab into 2 spaces on commits echo ec

[git-users] Creating attributes file automatically ?

2022-01-30 Thread skybuck2000
Right now I am in the process of following this tutorial to auto-convert spaces to tabs: https://sites.google.com/site/gibekm/programming/git/converting-between-tabs-and-spaces I would like to automate step 3 so it could be placed in a repository creation batch file like CreateAdvancedRepo.sh

[git-users] bash echo ' and ( problem

2022-01-27 Thread skybuck2000
Script test.sh runs badly in git bash: echo Let's start and echo (convert blabla) Creates problems when run: ./test.sh Complains missing ' to terminate Complains ( How to solve these problems for git bash echo ?!?!?!? I tried git echo "Let's start" But problem remains. Bye, skybuck.

[git-users] Make your system 1000x faster !

2022-01-26 Thread skybuck2000
Two valuable super short videos for you in dutch how to make your system 1000x faster it's in dutch but good luck ! it may crash some apps sometimes though, but the time gained is worth the reload when they do crash and it might also save your solid state disk from dieing ! Twee mooie videos fo

[git-users] Re: git bash undo paste

2022-01-26 Thread skybuck2000
NOW IT SUDDENLY DOES WORK CONTROL-U I HAVE NO IDEA WHY... WHAT AN INCONSISTENT BEHAVING PIECE OF SHIT SOFTWARE. BYE, SKYBUCK. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails f

[git-users] Re: git bash undo paste

2022-01-26 Thread skybuck2000
THIS SHIT DONT WORK, NOTHING WORSE THAN MANUAL WRONG TOO: https://gist.github.com/tuxfight3r/60051ac67c5f0445efee DOES NOT WORK WHEN IN INSERT MODE HAVE TO BE IN INSERT MODE TO TYPE SHIT. HAS THE WORLD GONE INSANE OH MY GOD.. I HATE THE FUCKERS THAT CREATE THIS BULLSHIT CONTROL _ FOR UNDO A

[git-users] git bash undo paste

2022-01-26 Thread skybuck2000
Is there anyway to make git-bash on window so to behave like a normal windows application ? It's super fucking annoying when git commit and in the editor I make some kind of git message editing mistake maybe some kind of pasting mistake because it's not in the fucking insert mode and then I tr

[git-users] Re: How to change git clone --mirror into git clone ?

2022-01-26 Thread skybuck2000
Anyway for now I will practice worktree on a clone mirror but then later I might try this tutorial to modify my existing local repo, a copy of it ofcourse ! ;) :) https://riptutorial.com/git/example/27069/moving-a-worktree Currently (as of version 2.11.0) there is no built-in functionality to m

[git-users] Re: How to change git clone --mirror into git clone ?

2022-01-26 Thread skybuck2000
I notice another problem with this technique... git branch -vv All tracking information is lost ? any way to get it back ? Weird stuff. I guess that information was stored in my original local repo... Might be better to adjust local repo for multiple worktrees. also git remote -v Some remot

[git-users] Re: How to change git clone --mirror into git clone ?

2022-01-26 Thread skybuck2000
I don't understand this comment though: *NOTE 2:* there is also difference in packed-refs . As it records the same information as refs/heads/, refs/tags/, and friends record in a more efficient way. This was a good link: https://stackoverflow.co

[git-users] Re: How to change git clone --mirror into git clone ?

2022-01-26 Thread skybuck2000
I think setting these might have helped: $ git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/* and this: $ git config remote.origin.mirror false I also read something about packed refs or something but didn't change that. I just tried another command: git fetch --all The remote

Re: [git-users] Driving a little train (dot/point/circle) across the branches.

2022-01-26 Thread skybuck2000
On Saturday, January 15, 2022 at 5:29:59 PM UTC+1 Magnus Therning wrote: > > Maybe https://jonas.github.io/tig/ fits the bill. > > This is too complex to setup: > https://jonas.github.io/tig/INSTALL.html Plus with recent log4j and other qnas and linux vunerabilities I am staying far away fro

[git-users] How to change git clone --mirror into git clone ?

2022-01-26 Thread skybuck2000
I want to experiment with worktrees. I am investigating the possibility of git clone --bare and git clone --mirror. git clone --mirror does something interesting it re-creates all local branches, which is something that git clone does not do which kinda sucks. However git clone --mirror has an

Re: [git-users] Driving a little train (dot/point/circle) across the branches.

2022-01-15 Thread skybuck2000
On Saturday, January 15, 2022 at 5:29:59 PM UTC+1 Magnus Therning wrote: > > Maybe https://jonas.github.io/tig/ fits the bill. > > >From the description and visuals it seems like this may allow to drive around like a choo choo train, but with extras... not yet sure I like the extras... I ask

[git-users] Driving a little train (dot/point/circle) across the branches.

2022-01-15 Thread skybuck2000
It would be nice if there was some kind of train/vehicle/dot/point/circle that could be moved across the branches. For example on the output of git log --graph --all. By using the cursor keys the train/dot can then be moved up,down,left,right. Left,Right to change/choose branch, Up/Down to mov

[git-users] Tricking git into diffing/merging splitted files.

2022-01-14 Thread skybuck2000
Here is an idea that might work: 1. Merge the splitted files back into one file. 2. Git can now compare the changed original document to the merged document. And thus perhaps GIT can now merge changes from original document to merged document. 3. Then to re-split the files, use markers to in

[git-users] Re: git log --graph --all makes top line fall of screen.

2022-01-03 Thread skybuck2000
This may solve the white commit hash id problem: https://stackoverflow.com/questions/11515089/why-no-yellow-in-powershell-and-posh-git " It turns out PowerShell's console renders System.ConsoleColor.DarkYellow as white: [Enum]::GetValues([ConsoleColor]) | %{ Write-Host $_ -ForegroundColor $_ }

[git-users] Re: git log --graph --all makes top line fall of screen.

2021-12-30 Thread skybuck2000
The only thing I still dislike somewhat is the red it's a bit too dark for origin/remote and such... but liveable. Bye for now, Skybuck. On Thursday, December 30, 2021 at 9:19:20 AM UTC+1 skybuck2000 wrote: > LOLOLOLOLOLOLOL. > > POWERSHELL + GIT-POSH SOLVES IT !!! > >

[git-users] Re: git log --graph --all makes top line fall of screen.

2021-12-30 Thread skybuck2000
LOLOLOLOLOLOLOL. POWERSHELL + GIT-POSH SOLVES IT !!! Q stays on the same line ! HAHAHAHAHAHA MICROSOFT+POSH JUST OWNED YOU LINUX BITCHES. BUT NOW ALL IS WELL THE COLORS ARE A LITTLE BIT LESS BEAUTIFULL CYBERPUNKY... MAYBE I CHANGE THAT LATER MAYBE NOT... CONTINUEING. BYE, SKYBUCK. -- Yo

[git-users] Re: git log --graph --all makes top line fall of screen.

2021-12-30 Thread skybuck2000
For today I am fed up with mintty/git bash which is slow, and buggy as hell, and cmd.exe looks terrible and has no nice colors. Time to try something else: Windows 11 powershell and this: posh-git by dahlbyk Maybe this will be better, time to find out ! =D

[git-users] Re: git log --graph --all makes top line fall of screen.

2021-12-29 Thread skybuck2000
pascalcoin change " into ' still don't work when rlog or olog types, output: Skybuck@DESKTOP-0T9FP82 MSYS /usr/bin $ alias cd..='cd ..' e:='cd e:' ll='ls -l' ls='ls -F --color=auto --show-control-chars' olog='git --no-pager log --all --graph --decorate --oneline --color=always | tac | sed -e "

[git-users] Re: git log --graph --all makes top line fall of screen.

2021-12-29 Thread skybuck2000
ctory through: No such file or directory "winpty" may be a binary file. See it anyway? sh: /etc/profile.d/aliases.sh: line 25: syntax error near unexpected token `;;' sh: /etc/profile.d/aliases.sh: line 25: ` ;;' Skybuck@DESKTOP-0T9FP82 MSYS /usr/bin $ Bye, Skybuck. On Thur

[git-users] Re: git log --graph --all makes top line fall of screen.

2021-12-29 Thread skybuck2000
Oops messed up that important alias, remove one line: was: [alias] rlog = !"git --no-pager log --all --graph --decorate --oneline --color=always | tac | sed -e 's/[\\]/aa/g' -e 's/[/]//g' -e 's/aa///g' | less -r +G -X" should be: [alias] rlog = !"git --no-pager log

[git-users] Re: git log --graph --all makes top line fall of screen.

2021-12-29 Thread skybuck2000
Reversing the log is a possible solution, it does look a little bit weird, commit hashes at the bottom and commit comments at the top per commit, but could be interesting: git --no-pager log --all --graph --decorate --color=always | tac | sed -e 's/[\]/aa/g' -e 's/[/]/\\/g' -e 's/a

[git-users] git log --graph --all makes top line fall of screen.

2021-12-29 Thread skybuck2000
The top line head-> and such falls of the screen in mintty. This is kinda annoying, this makes me have to scroll up and down scroll up to see head and other branch names scroll down to see command line. Is there a fix for this ? So git log --graph --all follow by :Q saves some lines at the bot

[git-users] git diff confusing: still showing ^M at end of some lines.

2021-12-29 Thread skybuck2000
I am trying to get rid of ^M in repository cause it kinda looks weird and may screw up diffs, I am not exactly sure what is going on. git diff head~2 I see red lines: - text - text - text I see green lines + same text or slightly changed ^m + same text or slightly changed ^m + same text or slig

[git-users] Re: how to remove two commits from a remote server

2021-12-29 Thread skybuck2000
> > commit 89346f81fef27286bd3fb1ed3ddc94a6f3fb560d (origin/copyright, > origin/copy) > | Author: Uwe Brauer > | Date: Thu Nov 25 10:43:56 2021 +0100 > | > | Add patches to my new branch > | > | --HG-- > | branch : copyright > | > * commit 66380013003549a6851d4e110b29a5a439e05609 > | A

[git-users] Re: Make git aware of which machine did the git commits ?

2021-12-29 Thread skybuck2000
On Thursday, December 16, 2021 at 10:14:58 AM UTC+1 Erik Cervin Edin wrote: > Personally, I would use different email in the different environments and > take advantage of that (at least gmail) strips trailing parts of the email > > git config --global user.email foo+...@gmail.com > git config

Re: [SUBVERSION?] (was: [git-users] A more advanced git system with working trees per commit.)

2021-12-29 Thread skybuck2000
OH MORE POTENTIAL TROUBLE AHEAD see what I mean... A commenter mentioned this does not work on windows 11 ?!? It did work on Windows 10... Well I am going to try it anyway... need this to work. Bye, Skybuck. -- You received this message because you are subscribed to the Google Groups "

Re: [SUBVERSION?] (was: [git-users] A more advanced git system with working trees per commit.)

2021-12-29 Thread skybuck2000
Path length hack for unlimited paths in windows 11. Could come in very handy especialy if I want to start using worktrees which I most likely will have to go do to prevent stupid files ending up from git switching and also reducing then number of switches. Apperently windows 11 is much worse th

Re: [SUBVERSION?] (was: [git-users] A more advanced git system with working trees per commit.)

2021-12-29 Thread skybuck2000
On Wednesday, December 29, 2021 at 2:57:31 PM UTC+1 o...@ucm.es wrote: > >>> "s" == skybuck2000 writes: > > > Now this is something to my liking. > > A git system where each commit and each branch has it's own working tree > ?! > > Why

[git-users] Re: GIT FUCKING SUCKS, ONE WORKING COPY IS NOT ENOUGH.

2021-12-29 Thread skybuck2000
NOW YOU UNDERSTAND WHY: A more advanced git system with working trees per commit. A more advanced git system with working trees per commit. Now this is something to my liking. A git system where each commit and each branch has it's own working tree ?! A tool which automates this would be great

[git-users] A more advanced git system with working trees per commit.

2021-12-29 Thread skybuck2000
Now this is something to my liking. A git system where each commit and each branch has it's own working tree ?! A tool which automates this would be great ! It should work as follows: 1. when a new branch is created create work tree for it in a sub folder 2. when a new commit is created or even

[git-users] Re: GIT FUCKING SUCKS, ONE WORKING COPY IS NOT ENOUGH.

2021-12-29 Thread skybuck2000
SOME IDIOT ON THE INTERNET MENTIONED TO USE WORKTREE COMMAND I BET THAT OVERWRITES THE DEFAULT AND FUCKS UP PEOPLE REPOSITORY, PRETTY FUCKING STUPID... BUT IT DOES APPEAR GIT HAS SUPPORT FOR MULTIPLE WORKING TREES: Git - git-worktree Documentation (git-scm.com)

[git-users] Re: GIT FUCKING SUCKS, ONE WORKING COPY IS NOT ENOUGH.

2021-12-29 Thread skybuck2000
ANOTHER NICE EXAMPLE WHY GIT SUCKS. IT'S NOW COPIEING THE ENTIRE HISTORY. NOOO MOTHERFUCKERS I JUST NEED ONE FUCKING VERSION FUCKING IDIOTS LOL. BYE, SKYBUCK. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To u

[git-users] Re: GIT FUCKING SUCKS, ONE WORKING COPY IS NOT ENOUGH.

2021-12-29 Thread skybuck2000
MIGHT AS WELL COPY THE ENTIRE REPO... IDIOTS ON THE INTERNET TELLING PEOPLE TO USE GIT CLONE FOR THAT HAHAHAH STUPID. DO YOU SEE NOW WHY COPY & PASTE IS SUPERIOR. I BET YOU DONT EVEN HAVE A COMMAND FOR IT IN GIT GIT COPY GIT PASTE FUCK YOU BYE, SKYBUCK. -- You received this message becau

[git-users] Re: GIT FUCKING SUCKS, ONE WORKING COPY IS NOT ENOUGH.

2021-12-29 Thread skybuck2000
ANOTHER REASON WHY GIT CLONE SUCKS IS IT IMPLIES A SERVER/GITHUB SOMEWHERE FUCK THAT. I SHOULD BE ABLE TO WORK LOCAL ONLY. HOW THE FUCK I CLONE A GIT REPOSITORY FROM LOCAL TO LOCAL NEED MORE COMMANDS HAHAHAHAHAHAH BYE, SKYBUCK. -- You received this message because you are subscribed to th

[git-users] Re: GIT FUCKING SUCKS, ONE WORKING COPY IS NOT ENOUGH.

2021-12-29 Thread skybuck2000
LISTEN UP YOU MOTHERFUCKERS I JUST CREATED THIS FOLDER ON MY WINDOWS: PascalCoinGit(For Copy&Paste Operations) NOW BECAUSE LINUX/SH/BASH SUCKS SO MUCH I HAVE TO TYPE THIS COMPLETELY IN GIT BASH AND SHIT. WORK ON TAB FEATURE SO IT IS AUTO-COMPLETED OR UPGRADE/UPDATE GIT TO HAVE MULTIPLE WO

[git-users] GIT FUCKING SUCKS, ONE WORKING COPY IS NOT ENOUGH.

2021-12-29 Thread skybuck2000
ONE FUCKING WORKTREE ?!?!?!? WHO THE FUCK ARE YOU EINSTEIN ?!?!?!? YOU EDIT/MODIFY EVERYTHING PERFECTLY THE FIRST FUCKING TIME I DONT THINK SO MOTHERFUCKER. I NEED MULTIPLE WORKING TREES. LIKE ONE FOR 5 COMMITS AGO LIKE ONE FOR 2 COMMITS AGO LIKE ONE FOR NOW. AND NO I DONT WANT TO CD.. CD.

[git-users] Re: Somehow git stash lost my changes.

2021-12-09 Thread skybuck2000
Oh this is odd: Apperently git did not loose it confusing it is in there somewhere: Skybuck@DESKTOP-0T9FP82 MSYS /e/SourceCode/PascalCoinGit/PascalCoin (AddThreadInfo) $ git stash show src/core/ULog.pas| 2 +- src/core/UNetProtocol.pas| 12 +

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
Then again, those lamps were old if I recall correctly, perhaps there was only one lamp still burning... I replaced one big lamp on top left side, two lamps in there they going strong. Other big lamp on top right side... also two lamps in it... one probably died a while ago.. and maybe tonight

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
Concerning the broken lamps, my best hypothesis is the upstair neighbours banging the floor/ceiling to hard causing these lamps to fail again or maybe there is a slight short somewhere, but it's most likely the upstair neighbours I was a bit pissed the last few days, the banging the ceiling a b

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
First I set this back to default which is false according to stack overfow. Would be nice if git has a restore setting to default option or something, cause if stackoverflow is wrong I am screwed, don't like relieing on history/stackoverflow... git could have changed after many years... kinda s

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
I will give this a try, I hope it doesn't mess up other things, weird: git config --global core.autocrlf true I guess the problem was that the file is coming from windows ? But so what ? vim can store any character in it it wants but apperently it stores windows characters in it on save and the

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
I tried to re-process it with vim: vim C:/Tools/Git/CustomUserSettings/.gitmessage Also command to set it was: git config --global commit.template C:/Tools/Git/CustomUserSettings/.gitmessage Problem with ^M remains, strangely enough, how hard is it to put some new lines in a text file and p

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
This is less easy then it seemed, I decided to remove the environment line just to save one line... but somehow the new lines are showing up as ^M... in vim(?) that kinda annoying: ^M ^M Operating System: Windows 7 Home Edition^M Virtualization Layer: VMWare Workstation 15^M Virtual Operating Sy

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
Failed: Skybuck@DESKTOP-0T9FP82 MSYS /e/SourceCode/PascalCoinGit/PascalCoin (AddThreadInfo) $ git config --global commit.template C:\Tools\Git\CustomUserSettings\.gitmessage Skybuck@DESKTOP-0T9FP82 MSYS /e/SourceCode/PascalCoinGit/PascalCoin (AddThreadInfo) $ git commit fatal: could not read '

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
I would like to add something like this: Environment: Operating System: Windows 7 Home Edition Virtualization Layer: VMWare Workstation 15 Virtual Operating System: Windows 11 Workstation Pro Computer: Toshiba Laptop L670 This will help me remember in what environment I made these software chang

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
> > Will this be parseable by the tools you mentioned: Machine:Windows 11 Workstation Pro Or will spaces in the value cause problems ? and should it be made: Machine:"Windows 11 Workstation Pro" ? Perhaps a comment should be added in front ? # Machine: "Windows 11 Workstation Pro" but I gue

Re: [git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
On Monday, December 6, 2021 at 9:34:52 AM UTC+1 Konstantin Khomoutov wrote: > On Sun, Dec 05, 2021 at 09:03:53AM -0800, Philip Oakley wrote: > > > Set up different 'username' on the two machines (or committer / author > > difference, etc). > > [...] > > ...also do not forget that it's OK to

[git-users] Re: Somehow git stash lost my changes.

2021-12-09 Thread skybuck2000
One more thing: Assuming git stash worked the way I thought it would work I was wondering what would happen if a re-base a "stashed" branch. Well I guess we'll never know that answer for now =D My hope ofcourse would be that it moves with it... Bye, Skybuck. -- You received this message b

[git-users] Re: Somehow git stash lost my changes.

2021-12-09 Thread skybuck2000
This is the first time I tried to do multi git stashes and it went horribly wrong because I did not understand how git stash works in this case. My assumption and hope was that the "stash" was stored per branch. So when I would switch back to the branch where the "stash" was stored and I would

[git-users] Re: Make git aware of which machine did the git commits ?

2021-12-09 Thread skybuck2000
Two reasons: 1. For fun 2. In case anything goes wrong, in case it's caused by machine differences. 3. In case I want to know on what machine the git commit was done in case I need to go back to that repository, in case other repositories on other machines went wrong somehow and in case that rep

[git-users] Somehow git stash lost my changes.

2021-12-09 Thread skybuck2000
Here is the log of today, I remove the git log --graph --all to keep it shorter: The file changes you see below are lost, how did this exactly happen ? (I can guess but I would rather have an expert look at it): (I don't like git stash much, maybe it should be called git stash push, just to

[git-users] Make git aware of which machine did the git commits ?

2021-12-04 Thread skybuck2000
Hello, Right now I am working with git on two different machines: Windows 7 on real hardware. Windows 11 on a virtual machine. It would be cool if git could be made aware somehow on which machine the commits were made ? Right now the windows 7 machine uses Skybuck Flying Right now the windows 1

Re: [git-users] GIT failed to checkout the linux kernel on a 6 GB system

2021-12-02 Thread skybuck2000
On Thursday, December 2, 2021 at 11:16:34 AM UTC+1 Konstantin Khomoutov wrote: > On Wed, Dec 01, 2021 at 09:01:36PM -0800, skybuck2000 wrote: > > > I would like to report that GIT failed to checkout the linux kernel on a > 6 > > GB system. > > > > For now

Re: [git-users] GITK: Useability issue, can't scroll through fie list ?

2021-12-02 Thread skybuck2000
On Thursday, December 2, 2021 at 11:07:39 AM UTC+1 Konstantin Khomoutov wrote: > On Wed, Dec 01, 2021 at 09:55:38PM -0800, skybuck2000 wrote: > > > I see two issues right now: > > [...] > > Please stop reporting bugs on this list. > Perhaps I will, however use

[git-users] Why is this window annyoingly small on to the bottom right ?

2021-12-02 Thread skybuck2000
Text windows should always be center, and big... Eye strain is a real thing... and this is kinda annoying and feels retarded... sorry... got used to it, but it's inconstant with other newsgroups where the window is center and big ?! Is window setting a google specific thing and if so why ? S

[git-users] Re: GITK: Useability issue, can't scroll through file list with arrow key ?

2021-12-01 Thread skybuck2000
rmission" ? Hmmm not entirely clear what this means haha. Some special permission given to users of the group or something ? Bye for now, Skybuck. On Thursday, December 2, 2021 at 6:56:53 AM UTC+1 skybuck2000 wrote: > How can I add a label to my postings ? I see labels on google grou

[git-users] Re: GITK: Useability issue, can't scroll through file list with arrow key ?

2021-12-01 Thread skybuck2000
How can I add a label to my postings ? I see labels on google groups. Is this done by somebody else or can I do it myself ? Bye, Skybuck. On Thursday, December 2, 2021 at 6:55:38 AM UTC+1 skybuck2000 wrote: > I see two issues right now: > > 1. git gui does not have a link to gitk ?

[git-users] GITK: Useability issue, can't scroll through fie list ?

2021-12-01 Thread skybuck2000
I see two issues right now: 1. git gui does not have a link to gitk ? 2. I don't like clicking a lot with my mouse, hurts my finger, costs energy, and this mouse clicks badly, have to push it pretty hard, problem right now/useability issue with gitk: 2.1 clicking on right bottom view where it

[git-users] Re: Command to display current branch tracking information ?

2021-12-01 Thread skybuck2000
Thanks ! Your command: git rev-parse --abbrev-ref --symbolic-full-name @{u} Works by replacing with the current branch name or any local branch name. (Does not seem to work with any remote branch name) So far this limitation seems ok for now though if it could find any remote branch name th

[git-users] Re: GIT failed to checkout the linux kernel on a 6 GB system

2021-12-01 Thread skybuck2000
ld run into. It would be very usefull if GIT could display which limit was hit and caused the failure/error. Ofcourse it would be better if GIT tries to function within these limitations so it does not error. Bye for now, Skybuck. On Thursday, December 2, 2021 at 6:01:36 AM UTC+1 skybuck2000 w

[git-users] GIT failed to checkout the linux kernel on a 6 GB system

2021-12-01 Thread skybuck2000
Hello, I would like to report that GIT failed to checkout the linux kernel on a 6 GB system. For now I believe it ran out of memory. I only tried once. PAGEFILE.SYS on this system was disabled. Apperently GIT relies on PAGEFILE.SYS to cover any out of memory situations. This kinda sucks. My

[git-users] Command to display current branch tracking information ?

2021-12-01 Thread skybuck2000
It would be usefull if there was a command to see the tracking information for the current branch, if any. Right now I am trying to figure out if any tracking is set for the local branch to some kind of remote branch. There does not seem to be a command for it ? I know there are other commands

[git-users] Re: GIT: Split file into multiple files, then detect changes in updated original file and apply to multiple files.

2021-11-30 Thread skybuck2000
LittleFile2 LittleFile3 There seem to be some git plumbing commands. Maybe there is some plumbing command that can help with this. Bye for now, Skybuck. On Tuesday, November 23, 2021 at 1:30:48 AM UTC+1 skybuck2000 wrote: > GIT: Split file into multiple files, then detect changes in upda

[git-users] Rebase documentation is not clear enough.

2021-11-30 Thread skybuck2000
https://git-scm.com/book/en/v2/Git-Branching-Rebasing I believe git rebase must be done from the branch which is to be re-based. So it's always necessary to git switch It is not possible to go to git switch and then do git rebase etc This will not work and go wrong correct ?!? If so, then

[git-users] Synchrozining and versioning "linked files"/"dependencies" language neutral/independent

2021-11-26 Thread skybuck2000
Programming languages like C, Delphi, Python, Java, C#, C++ and others often have include and import and use clausules and such in their program files. For example: include "filea.h"; uses fileb; import graphics; These pieces of synthax describe how the files are linked together and how they d

  1   2   >