<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-shell.git/go/cmd/gitlab-shell, branch id-api-https</title>
<subtitle>gitlab.com: gitlab-org/gitlab-shell.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/'/>
<entry>
<title>Pass the root directory into the fallback command</title>
<updated>2019-04-12T14:16:08+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-04-10T14:09:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=01014c474a1cef7262ca2dafc6f33bad3225ac25'/>
<id>01014c474a1cef7262ca2dafc6f33bad3225ac25</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Correctly determine the root directory for gitlab-shell</title>
<updated>2019-04-12T14:16:08+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-04-09T15:28:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=f6a7f1714763d8f0048c23f0cc75184addd6d4dc'/>
<id>f6a7f1714763d8f0048c23f0cc75184addd6d4dc</id>
<content type='text'>
Credit to https://gitlab.com/ejiek for spotting this one.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Credit to https://gitlab.com/ejiek for spotting this one.
</pre>
</div>
</content>
</entry>
<entry>
<title>Provide go implementation for 2fa_recovery_codes command</title>
<updated>2019-03-21T11:53:09+00:00</updated>
<author>
<name>Igor</name>
<email>idrozdov@gitlab.com</email>
</author>
<published>2019-03-21T11:53:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=98dbdfb758703428626d54b2a257565a44509a55'/>
<id>98dbdfb758703428626d54b2a257565a44509a55</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Wrap Stderr &amp; Stdout in a reporter struct</title>
<updated>2019-03-15T17:03:35+00:00</updated>
<author>
<name>Bob Van Landuyt</name>
<email>bob@vanlanduyt.co</email>
</author>
<published>2019-03-14T13:01:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=83c0f18e1de04b3bad9c424084e738e911c47336'/>
<id>83c0f18e1de04b3bad9c424084e738e911c47336</id>
<content type='text'>
The reporter struct can be used for passing around and reporting to
the io.Writer of choice.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The reporter struct can be used for passing around and reporting to
the io.Writer of choice.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't fall back to ruby for non SSH connections</title>
<updated>2019-01-15T21:34:38+00:00</updated>
<author>
<name>Bob Van Landuyt</name>
<email>bob@vanlanduyt.co</email>
</author>
<published>2019-01-15T21:34:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=d762f4ec9ea35cb00309b41ad60055cd3c5709ba'/>
<id>d762f4ec9ea35cb00309b41ad60055cd3c5709ba</id>
<content type='text'>
When SSH_CONNECTION is not set, we don't fall back to ruby, but
instead fail directly in go writing the error to stderr.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When SSH_CONNECTION is not set, we don't fall back to ruby, but
instead fail directly in go writing the error to stderr.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow enabling gitlab-shell "discover"-feature</title>
<updated>2019-01-15T10:51:38+00:00</updated>
<author>
<name>Bob Van Landuyt</name>
<email>bob@vanlanduyt.co</email>
</author>
<published>2018-12-21T17:05:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=7215126b6674abd4b5ff6b97d30bab6c544bf8df'/>
<id>7215126b6674abd4b5ff6b97d30bab6c544bf8df</id>
<content type='text'>
This adds the possibility to enable features for GitLab shell.

The first feature being recognized is "Discover": It's the command
that is executed when running `ssh git@gitlab.example.com` and is
called without a command.

The gitlab key id or username is already parsed from the command line
arguments.

Currently we only support communicating with GitLab-rails using unix
sockets. So features will not be enabled if the GitLab-url is using a
different protocol. The url for this read from the config yaml.

Pending ruby-specs have been added for the gitlab-shell command.

Refactor to have separate command packages
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds the possibility to enable features for GitLab shell.

The first feature being recognized is "Discover": It's the command
that is executed when running `ssh git@gitlab.example.com` and is
called without a command.

The gitlab key id or username is already parsed from the command line
arguments.

Currently we only support communicating with GitLab-rails using unix
sockets. So features will not be enabled if the GitLab-url is using a
different protocol. The url for this read from the config yaml.

Pending ruby-specs have been added for the gitlab-shell command.

Refactor to have separate command packages
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow the config directory to be specified</title>
<updated>2018-09-28T14:24:45+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2018-09-28T14:17:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=f435c4644abc167cdfe6bfe3d320ff840f468c09'/>
<id>f435c4644abc167cdfe6bfe3d320ff840f468c09</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Specify a richer scheme to run the migration with</title>
<updated>2018-09-28T13:50:26+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2018-09-28T13:50:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=7f1098a1d9fd79b394b53b0c43fcc4741349d43a'/>
<id>7f1098a1d9fd79b394b53b0c43fcc4741349d43a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial feature-flagged go/ruby switch</title>
<updated>2018-09-28T03:24:52+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2018-08-28T08:37:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-shell.git/commit/?id=1f8556b2f86d7954f86f4a9a58f586a838f8ae21'/>
<id>1f8556b2f86d7954f86f4a9a58f586a838f8ae21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
