Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 60c3cc77617ded610db06783710506b9479a2c4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
 * Copyright (C) 2008, Marek Zawirski <marek.zawirski@gmail.com>
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package org.eclipse.egit.ui.internal.actions;

/**
 * Action for choosing specifications for push, and pushing out to another
 * repository.
 */
public class PushAction extends RepositoryAction {
	/**
	 *
	 */
	public PushAction() {
		super(ActionCommands.PUSH_ACTION, new PushActionHandler());
	}
}

Back to the top