我是Git的新手,我遇到了以下问题:在rebase之后,Git添加了将import javax.swing.*;
import java.awt.*;
public class Animate {
int x = 1;
int y = 1;
public static void main(String[] args) {
Animate gui = new Animate();
gui.start();
}
public void start() {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Rectangles rectangles = new Rectangles();
frame.getContentPane().add(rectangles);
frame.setSize(500, 270);
frame.setVisible(true);
for (int i = 0; i < 100; i++, y++, x += 2) {
frame.repaint();
try {
Thread.sleep(50);
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
class Rectangles extends JPanel {
public void paintComponent(Graphics g) {
g.setColor(Color.blue);
g.fillRect(x, y, 500 - x * 2, 250 - y * 2);
}
}
}
附加到文件名末尾的请求2文件。
所以看起来像这样:~HEAD_0
InfoViewController.m~HEAD_0
后缀的东西只存在于Bitbucket上的提交消息中。~HEAD_0
的文件包含父分支的最后状态的快照。发生了什么,我该怎么做才能解决问题?