09 Aug, 2012
3 commits
-
The link should point to the project under zsh-users organization and not under the sharat87 user.
-
Change clone url to point to the zsh-users repo.
08 Aug, 2012
4 commits
02 Aug, 2012
2 commits
-
Fix link to @kennethreitz's autoenv.
-
The standard markdown link syntax was used instead of the reference syntax.
31 Jul, 2012
2 commits
-
Local bundles, if are recorded with a `--branch` option, should *always* be
cloned.
27 Jul, 2012
2 commits
-
We force the `--no-local-clone` argument to `-bundle` command, when the given
repo url is an absolute local path and it is *not* a git repo. It doesn't make
sense to clone something which is not a repo!
26 Jul, 2012
7 commits
-
Using a new `make_local_clone` variable which is an internal field that better
represents whether we need a local clone. -
Keyword arguments of the syntax `--arg` are supported, not just `--arg=val`.
25 Jul, 2012
1 commit
-
The `-`'s were being replaced to `_`'s even in the value of the given argument,
whereas the intention was to just replace them in the name of the argument. This
is now fixed.
24 Jul, 2012
5 commits
-
The new `--no-local-clone` argument to -bundle command makes it so that if the
bundle specified is a local path, then no new clone is made. The bundle is
loaded directly from the given path. -
The position_args variable is now an array, instead of a string with argument
names split by a space. This feels much cleaner. -
Currently, a keyword style argument given to -bundle command requires a value,
like `--name=val`. With this, just a `--name` would imply `--name=true`
20 Jul, 2012
5 commits
-
Running an `antigen-update` will now print a --oneline git log of the changes
that are pulled. Helpful if interested in what has just been updated and a
glimpse on what can be expected. -
This will be used to make the -ensure-repo command output more detailed
information on the changes, if any, made to the clone.
18 Jul, 2012
6 commits
-
The directory names were being converted to urls and then compared to the
contents of the record. The problem with this is there could be directories with
extremely wierd names in there, not created by antigen. This could throw the
dir->url conversion off.So, with this, the urls from the record are converted to directory names and are
compared with the contents of repos/. Any directory unaccounted for will be
converted to a repo url, solely for the purpose of displaying to the user. After
confirmation, these directories are deleted, whether they represent a git clone
or not. -
The force argument makes the `-cleanup` command behave in a non-interactive
fashion, by deleting the unused clones without asking for a confirmation. -
Keeping the branch and the repo url as separate fields for each bundle entry,
seems to be only causing trouble. Now, the repo url and the branch are joined
togather with a `|` character and split only when needed.
17 Jul, 2012
3 commits
-
The contents of unused_clones is not a url anymore. Its more of a `url|branch`
like string.