Re: [dev] Suckless/Simple version control

2019-12-12 Thread David Phillips
On Mon, Dec 09, 2019 at 10:42:09AM +0100, Kurt Van Dijck wrote: > On ma, 09 dec 2019 21:22:05 +1300, David Phillips wrote: > > On Mon, Dec 09, 2019 at 05:47:42AM +, Jacob Louis Prosser wrote: > > > Hey all, > > > > > > I started working on my own version control system working with > > > patc

Re: [dev] Suckless/Simple version control

2019-12-09 Thread Kurt Van Dijck
On ma, 09 dec 2019 21:22:05 +1300, David Phillips wrote: > On Mon, Dec 09, 2019 at 05:47:42AM +, Jacob Louis Prosser wrote: > > Hey all, > > > > I started working on my own version control system working with patch/diff. > > Each commit is just a patch changing the last commit's files to the

Re: [dev] Suckless/Simple version control

2019-12-09 Thread David Phillips
On Mon, Dec 09, 2019 at 05:47:42AM +, Jacob Louis Prosser wrote: > Hey all, > > I started working on my own version control system working with patch/diff. > Each commit is just a patch changing the last commit's files to the new ones. > It is currently implemented as a collection of shell s

[dev] Suckless/Simple version control

2019-12-09 Thread Jacob Louis Prosser
Hey all, I started working on my own version control system working with patch/diff. Each commit is just a patch changing the last commit's files to the new ones. It is currently implemented as a collection of shell scripts https://gitlab.com/jacobprosser8/svcs. The implementation is god awful