File was renamed from src/main/java/com/gitblit/transport/ssh/commands/BaseGitCommand.java |
| | |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package com.gitblit.transport.ssh.commands; |
| | | package com.gitblit.transport.ssh.git; |
| | | |
| | | import java.io.IOException; |
| | | |
| | |
| | | import com.gitblit.git.GitblitUploadPackFactory; |
| | | import com.gitblit.git.RepositoryResolver; |
| | | import com.gitblit.transport.ssh.SshDaemonClient; |
| | | import com.gitblit.transport.ssh.commands.BaseCommand; |
| | | |
| | | /** |
| | | * @author Eric Myhre |
| | | * |
| | | */ |
| | | public abstract class BaseGitCommand extends BaseCommand { |
| | | abstract class BaseGitCommand extends BaseCommand { |
| | | @Argument(index = 0, metaVar = "REPOSITORY", required = true, usage = "repository name") |
| | | protected String repository; |
| | | |