View Single Post
01-16-11, 06:29 PM   #5
Cynyr
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 9
existing repos

So do I need to do anything to my existing repos, or can i just add a remote and push to it?

Code:
git remote add ${NAME} ${URI AS SHOW IN GIT CONTROL INTERFACE}
git push ${NAME} master
the code above seems to be working.

Is there a way to remove git from an addon, should the author want to stop using git?

Also, shouldn't the generate zip thing prefix the addon name to the path? like "foo/foo.toc"?
Code:
git archive --prefix="${name}/" -o ${name}-${tag}.zip ${tag}
Otherwise, this is awesome. I'll no longer have to rely on linking to github for "experimental" builds.
  Reply With Quote