diff --git a/packages/git/src/subcommands/add.js b/packages/git/src/subcommands/add.js
index 441576d09..4fc93446d 100644
--- a/packages/git/src/subcommands/add.js
+++ b/packages/git/src/subcommands/add.js
@@ -17,8 +17,6 @@
* along with this program. If not, see .
*/
import git from 'isomorphic-git';
-import path from 'path-browserify';
-import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
import { find_repo_root } from '../git-helpers.js';
export default {
diff --git a/packages/git/src/subcommands/commit.js b/packages/git/src/subcommands/commit.js
index 35ab9042d..485e247dc 100644
--- a/packages/git/src/subcommands/commit.js
+++ b/packages/git/src/subcommands/commit.js
@@ -17,8 +17,6 @@
* along with this program. If not, see .
*/
import git from 'isomorphic-git';
-import path from 'path-browserify';
-import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
import { find_repo_root, shorten_hash } from '../git-helpers.js';
export default {
diff --git a/packages/git/src/subcommands/help.js b/packages/git/src/subcommands/help.js
index 1a27f8315..22fdeae0d 100644
--- a/packages/git/src/subcommands/help.js
+++ b/packages/git/src/subcommands/help.js
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
-import git from 'isomorphic-git';
-import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
import subcommands from './__exports__.js';
import git_command from '../git-command-definition.js';
import { produce_help_string } from '../help.js';
diff --git a/packages/git/src/subcommands/status.js b/packages/git/src/subcommands/status.js
index 3ad136be2..65b839773 100644
--- a/packages/git/src/subcommands/status.js
+++ b/packages/git/src/subcommands/status.js
@@ -18,7 +18,6 @@
*/
import git from 'isomorphic-git';
import path from 'path-browserify';
-import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
import { find_repo_root } from '../git-helpers.js';
export default {
diff --git a/packages/git/src/subcommands/version.js b/packages/git/src/subcommands/version.js
index 2e639f0d0..c55cb29fe 100644
--- a/packages/git/src/subcommands/version.js
+++ b/packages/git/src/subcommands/version.js
@@ -17,8 +17,6 @@
* along with this program. If not, see .
*/
import git from 'isomorphic-git';
-import path from 'path-browserify';
-import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
const VERSION = '1.0.0';