Playing with Git

Pascal Rigaux pascal.rigaux at univ-paris1.fr
Thu Apr 6 04:06:28 EDT 2017


Hi,

Since i had to do such a thing many times locally and couldn't find a tool to automate this a little, i did
   https://github.com/UnivParis1/git-unarchive .
Quite similar, except no tagging (our goal is to commit things locally, not to publish them)

cu

On 06/04/2017 03:10, Tom Zeller wrote:
> Ian,
>
> Here's what I did :
>
> mkdir shibboleth-identity-provider
> cd shibboleth-identity-provider
> git init
> tar xzf ../shibboleth-identity-provider-3.0.0.tar.gz --strip 1
> git add .
> git commit -m "3.0.0"
> git tag -m "3.0.0" 3.0.0
> rm -rf *
> tar xzf ../shibboleth-identity-provider-3.1.0.tar.gz --strip 1
> git add .
> git commit -m "3.1.0"
> git tag -m "3.1.0" 3.1.0
>
> and so on. Seems to do what I want. Does that make sense ?
>
> I didn't sign the tags, just was curious if I could do diffs in Eclipse.
>
> Thx,
> Tom


More information about the dev mailing list